1
0
Fork 0

Adding 45/hibernate-status version 1.14-rc2 [debf9ae].

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-24 19:42:08 +01:00
parent 65d924be2c
commit 6e18c5592f
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
29 changed files with 2505 additions and 0 deletions

View file

@ -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'"