Update release workflows (#290)

Use `gh` CLI instead of third-party actions
This commit is contained in:
damontecres 2025-11-21 15:26:25 -05:00 committed by GitHub
parent a3305b6b57
commit 72970b9a4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 43 deletions

View file

@ -60,9 +60,9 @@ jobs:
echo "SHA256 checksums:"
find app/build/outputs/apk -name '*.apk' -print0 | xargs -0 sha256sum
- name: Create GitHub release
uses: ncipollo/release-action@v1
with:
artifacts: "${{ steps.apks.outputs.apks }}"
makeLatest: true
prerelease: false
generateReleaseNotes: false
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ env.TAG_NAME }}" \
--latest --title "${{ env.TAG_NAME }}" --verify-tag -n "Placeholder" --draft \
"app/build/outputs/apk/**/*.apk"