Compare commits

..

No commits in common. "561551fd5f66ee5ed92a0c88735bf279db909fd0" and "156db3ee986efd324b3e50577ec9beafd1107b44" have entirely different histories.

View file

@ -16,7 +16,6 @@ jobs:
env: env:
GH_TOKEN: ${{ github.token }} GH_TOKEN: ${{ github.token }}
LC_TIME: en_US.UTF-8 LC_TIME: en_US.UTF-8
TODAY: $(date +'%d %b %Y')
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -24,18 +23,16 @@ jobs:
- name: Build with Gradle - name: Build with Gradle
run: ./gradlew assembleDist run: ./gradlew assembleDist
- name: Create release - uses: actions/forgejo-release@v2
uses: actions/forgejo-release@v2
with: with:
direction: upload direction: upload
url: https://code.host.antville.org url: https://code.host.antville.org
token: ${{ github.token }} token: ${{ github.token }}
title: ${{ env.today }}
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
# FIXME: Currently only outputs gh command; adapt for Forgejo # FIXME: Currently only outputs gh command; adapt for Forgejo
run: | run: |
echo gh release create "$GITHUB_REF_NAME" \ echo gh release create "$GITHUB_REF_NAME" \
@ -43,7 +40,7 @@ jobs:
--title "$(date +'%d %b %Y')" \ --title "$(date +'%d %b %Y')" \
--generate-notes --generate-notes
- name: Upload release assets to GitHub - name: Upload assets
# FIXME: Currently only outputs gh command; adapt for Forgejo # FIXME: Currently only outputs gh command; adapt for Forgejo
run: | run: |
echo gh release upload "$GITHUB_REF_NAME" \ echo gh release upload "$GITHUB_REF_NAME" \