0
1
Fork 1
mirror of https://code.forgejo.org/actions/forgejo-release synced 2024-09-20 02:55:51 +02:00
forgejo-release/testdata/upload-download/.forgejo/workflows/test.yml
Earl Warren b818607d61
no doer
2023-03-31 00:19:35 +02:00

34 lines
984 B
YAML

#
# 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:
setup-forgejo:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
id: release-upload
uses: SELF@vTest
with:
direction: upload
tag: v1.0
token: FORGEJO_TOKEN
release-dir: upload-dir
release-notes: "RELEASE NOTES"
verbose: true
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
id: release-download
uses: SELF@vTest
with:
direction: download
tag: v1.0
token: FORGEJO_TOKEN
release-dir: download-dir
verbose: true
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: |
diff -u upload-dir download-dir