We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d68104 commit adca22dCopy full SHA for adca22d
.github/workflows/release.yml
@@ -22,8 +22,8 @@ jobs:
22
run: ./gradlew assembleRelease
23
- name: Set current directory as a safe repository
24
run: git config --global --add safe.directory /github/workspace
25
- - uses: geertvdc/setup-hub@master
26
- - name: Release using hub
27
- run: hub release create -a ./app/build/outputs/apk/release/**.apk -m "v${GITHUB_REF##*/}" ${GITHUB_REF##*/}
+ - uses: ButterCam/setup-github-cli@master
+ - name: Release using github cli
+ run: gh release create ${GITHUB_REF##*/} ./app/build/outputs/apk/release/**.apk
28
env:
29
- GITHUB_TOKEN: ${{ secrets.TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments