Renaming extensions subdirectory for GNOME 48.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
8ed6608e27
commit
d13dfd08e5
189 changed files with 1 additions and 1 deletions
32
extensions/48/hibernate-status/.github/workflows/release.yaml
vendored
Normal file
32
extensions/48/hibernate-status/.github/workflows/release.yaml
vendored
Normal 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'"
|
Loading…
Add table
Add a link
Reference in a new issue