This commit is contained in:
Tobi Schäfer 2025-02-15 19:19:45 +01:00
parent 9cd6637b4f
commit a5b84c63d7
Signed by: tobi
GPG key ID: 91FAE6FE2EBAC4C8

View file

@ -30,20 +30,21 @@ jobs:
url: https://code.host.antville.org url: https://code.host.antville.org
token: ${{ github.token }} token: ${{ github.token }}
title: ${{ env.TODAY }} title: ${{ env.TODAY }}
#tag: $(date +'%Y.%m.%d')
release-dir: build/distributions release-dir: build/distributions
release-notes-assistant: true release-notes-assistant: true
verbose: true verbose: true
- name: Create release at GitHub - name: Create release at GitHub
run: | run: |
gh release create "$GITHUB_REF_NAME" \ echo gh release create "$GITHUB_REF_NAME" \
--repo "$GITHUB_REPOSITORY" \ --repo "$GITHUB_REPOSITORY" \
--title "$(date +'%d %b %Y')" \ --title "$(date +'%d %b %Y')" \
--generate-notes --generate-notes
- name: Upload release assets to GitHub - name: Upload release assets to GitHub
run: | run: |
gh release upload "$GITHUB_REF_NAME" \ echo gh release upload "$GITHUB_REF_NAME" \
build/distributions/helma-*.* \ build/distributions/helma-*.* \
--clobber --clobber
whoami
pwd