Compare commits

...

2 commits
v4.0.2 ... v4

Author SHA1 Message Date
Chl
17f9610281
Stopping the mixing -> clear separation Forgejo/Github
All checks were successful
/ GenerateReleaseZipfile (push) Successful in 1m15s
This action is even less useful in Github than in Forgejo/Gitea so let's stop
wasting time and clearly label with a suffix 'v4.x.y-github' for Github.
2024-08-31 15:25:00 +02:00
Chl
67ac8517db
Fixup workflow trigger on Forgejo
All checks were successful
/ GenerateReleaseZipfile (push) Successful in 1m14s
2024-08-31 03:23:58 +02:00
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,7 @@
on: on:
push: push:
branches: branches:
- 'v4'
jobs: jobs:
GenerateReleaseZipfile: GenerateReleaseZipfile:
@ -55,6 +56,8 @@ jobs:
# In case the repository becomes private, we add our GITHUB_TOKEN to the artifact-url. # In case the repository becomes private, we add our GITHUB_TOKEN to the artifact-url.
MY_AUTHENTICATED_URL="$( echo "${{ steps.uploading.outputs.artifact-url }}" | sed "s#^\(https\?://\)#\1$GITHUB_TOKEN\@#" )" MY_AUTHENTICATED_URL="$( echo "${{ steps.uploading.outputs.artifact-url }}" | sed "s#^\(https\?://\)#\1$GITHUB_TOKEN\@#" )"
wget -O "$DOWNLOAD_FILE" "$MY_AUTHENTICATED_URL" wget -O "$DOWNLOAD_FILE" "$MY_AUTHENTICATED_URL"
# unzip and check
unzip "$DOWNLOAD_FILE" unzip "$DOWNLOAD_FILE"
sha256sum -c "$SHASUM_FILE" sha256sum -c "$SHASUM_FILE"

View file

@ -1,6 +1,7 @@
on: on:
push: push:
branches: branches:
- 'v4-github'
jobs: jobs:
GenerateReleaseZipfile: GenerateReleaseZipfile: