exclude tags

This commit is contained in:
Earl Warren 2023-03-30 23:30:41 +02:00
parent 28d6f1caa5
commit a9b7d752f4
No known key found for this signature in database
GPG Key ID: 0579CB2928A78A00
1 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
#
# The following:
# if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
# is a workaround until https://codeberg.org/forgejo/forgejo/issues/608 is fixed
#
name: Upload & Download a Forgejo Release
on: [push]
jobs:
@ -5,7 +10,8 @@ jobs:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- id: release-upload
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
id: release-upload
uses: SELF@vTest
with:
direction: upload
@ -15,7 +21,8 @@ jobs:
release-dir: upload-dir
release-notes: "RELEASE NOTES"
verbose: true
- id: release-download
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
id: release-download
uses: SELF@vTest
with:
direction: download
@ -24,5 +31,6 @@ jobs:
doer: testuser
release-dir: download-dir
verbose: true
- run: |
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: |
diff -u upload-dir download-dir