Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DeluxerPanda authored Aug 22, 2024
1 parent a7f44d4 commit 9c59a04
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Get release file apk path
id: releaseApk
run: echo "apkfile=$(find app/release/*.apk)" >> $GITHUB_OUTPUT
run: echo "apkfile=$(find app/build/outputs/apk/release/*.apk)" >> $GITHUB_OUTPUT

- name: Upload Release Build to Artifacts
uses: actions/upload-artifact@v4
Expand All @@ -59,13 +59,12 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: Pre-Release ${{ github.ref_name }}
tag_name: ${{ env.VERSION }}
name: Pre-Release ${{ env.VERSION }}
body: ""
append_body: false
files: |
${{ env.apkfile }}
files: ${{ env.apkfile }}
prerelease: true
generate_release_notes: true
env:
version: ${{ env.version }}
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9c59a04

Please sign in to comment.