Test release action
All checks were successful
Build / build (push) Successful in 4m36s

This commit is contained in:
Tim Kluge 2025-05-28 16:08:38 +02:00
parent a54abf2667
commit bc1d03f053

View File

@ -52,12 +52,18 @@ jobs:
- name: Create Release - name: Create Release
id: create_release id: create_release
uses: ncipollo/release-action@v1 uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
files: |
app/build/outputs/apk/release/app-release.apk
app/manifest.json
app/karoo-powerbar.png
powerbar_min.gif
powerbar0.png
powerbar2.png
name: ${{ github.ref_name }} name: ${{ github.ref_name }}
prerelease: false prerelease: false
generateReleaseNotes: true generateReleaseNotes: true
artifacts: app/build/outputs/apk/release/app-release.apk, app/manifest.json, app/karoo-powerbar.png, powerbar_min.gif, powerbar0.png, powerbar2.png
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}