diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-16 17:09:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-16 17:09:30 +0000 |
commit | ecc508e4d31d0a7eff3e312f8bfa0b5354bf67c5 (patch) | |
tree | 4ab2de3e20af5191ab1d174848bde3e56b68200e /extensions/47/hibernate-status/.github | |
parent | Updating 46/vertical-workspaces to version 46.2+20240828 [5b87af5]. (diff) | |
download | gnome-shell-extensions-extra-ecc508e4d31d0a7eff3e312f8bfa0b5354bf67c5.tar.xz gnome-shell-extensions-extra-ecc508e4d31d0a7eff3e312f8bfa0b5354bf67c5.zip |
Renaming extensions subdirectory for GNOME 47.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/47/hibernate-status/.github')
-rw-r--r-- | extensions/47/hibernate-status/.github/workflows/release.yaml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extensions/47/hibernate-status/.github/workflows/release.yaml b/extensions/47/hibernate-status/.github/workflows/release.yaml new file mode 100644 index 0000000..80138f9 --- /dev/null +++ b/extensions/47/hibernate-status/.github/workflows/release.yaml @@ -0,0 +1,32 @@ +name: "Prepare GitHub release" + +on: + push: + +jobs: + zip: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: zip + run: | + sudo apt-get install make gettext + make zip-file + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: zip + path: "*.zip" + - name: Release (pre) + uses: softprops/action-gh-release@v1 + with: + files: "*.zip" + prerelease: true + if: contains(github.ref_name,'rc') && github.ref_type == 'tag' + - name: Release + uses: softprops/action-gh-release@v1 + with: + files: "*.zip" + if: "!contains(github.ref_name,'rc') && github.ref_type == 'tag'" |