diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 16:02:54 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 16:02:54 +0000 |
commit | 6783934088f6d05d0300562e4167185ef61e995e (patch) | |
tree | 53622be26cb416e7f02f3677a219fdea86fa29e2 /extensions/45/hibernate-status/.github/workflows | |
parent | Adding 45/disable-workspace-switcher version 3+20231017 [e4b8d3e]. (diff) | |
download | gnome-shell-extensions-extra-6783934088f6d05d0300562e4167185ef61e995e.tar.xz gnome-shell-extensions-extra-6783934088f6d05d0300562e4167185ef61e995e.zip |
Adding 45/hibernate-status version 1.14-rc2 [debf9ae].
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/45/hibernate-status/.github/workflows')
-rw-r--r-- | extensions/45/hibernate-status/.github/workflows/release.yaml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extensions/45/hibernate-status/.github/workflows/release.yaml b/extensions/45/hibernate-status/.github/workflows/release.yaml new file mode 100644 index 0000000..80138f9 --- /dev/null +++ b/extensions/45/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'" |