[skip ci] Fix release workflow
This commit is contained in:
parent
f11ee11b5f
commit
9e730ff20e
1 changed files with 2 additions and 1 deletions
3
.github/workflows/build-release.yml
vendored
3
.github/workflows/build-release.yml
vendored
|
@ -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 }}'
|
Loading…
Reference in a new issue