[skip ci] Fix release workflow

This commit is contained in:
wingio 2023-03-21 18:43:42 -04:00
parent f11ee11b5f
commit 9e730ff20e
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ jobs:
- name: Release
run: |
mv app/build/outputs/apk/release/app-release.apk app/build/outputs/apk/release/Manager.apk
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
tag="${{ github.event.inputs.versionCode }}"
@ -49,6 +50,6 @@ jobs:
gh release create "$tag" \
--title "v${{ github.event.inputs.versionName }}" \
--generate-notes \
app/build/outputs/apk/release/app-release.apk#Manager.apk
app/build/outputs/apk/release/Manager.apk
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'