This commit is contained in:
parent
8909ee03fc
commit
bcd6613245
2 changed files with 5 additions and 5 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -189,12 +189,12 @@ jobs:
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "RELEASE_NOTES=$RELEASE_NOTES" >> $GITHUB_ENV
|
echo "$RELEASE_NOTES" > release-notes.md
|
||||||
|
|
||||||
- name: Debug Release Notes
|
- name: Debug Release Notes
|
||||||
run: |
|
run: |
|
||||||
echo "Fetched Release Notes:"
|
echo "Fetched Release Notes:"
|
||||||
echo "${{ env.RELEASE_NOTES }}"
|
cat release-notes.md
|
||||||
|
|
||||||
|
|
||||||
- name: Create Release and Upload Assets
|
- name: Create Release and Upload Assets
|
||||||
|
@ -204,11 +204,10 @@ jobs:
|
||||||
token: ${{ secrets.FORGEJO_TOKEN }}
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
tag: "${{ env.VERSION_NAME }}"
|
tag: "${{ env.VERSION_NAME }}"
|
||||||
title: "AlaskarTV-v${{ env.VERSION_NAME }}-${{ env.VERSION_CODE }}"
|
title: "AlaskarTV-v${{ env.VERSION_NAME }}-${{ env.VERSION_CODE }}"
|
||||||
release-notes: "${{ env.RELEASE_NOTES }}"
|
release-notes: "$(cat release-notes.md)"
|
||||||
release-dir: ./release-assets
|
release-dir: ./release-assets
|
||||||
direction: upload
|
direction: upload
|
||||||
env:
|
env:
|
||||||
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
||||||
VERSION_NAME: ${{ env.VERSION_NAME }}
|
VERSION_NAME: ${{ env.VERSION_NAME }}
|
||||||
VERSION_CODE: ${{ env.VERSION_CODE }}
|
VERSION_CODE: ${{ env.VERSION_CODE }}
|
||||||
RELEASE_NOTES: ${{ env.RELEASE_NOTES }}
|
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
v0.18.3
|
v0.18.3
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue