Adds support for GNOME 47 (#14) #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release Package | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Version | |
id: version | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- name: Package Name | |
id: package | |
run: echo "[email protected].${{ steps.version.outputs.tag }}.shell-extension.zip" >> $GITHUB_OUTPUT | |
- name: Create Package | |
run: | | |
cd [email protected] | |
zip -r ../${{ steps.package.outputs.package }} . | |
- name: Upload Package | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ${{ steps.package.outputs.package }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |