Skip to content

Commit

Permalink
Change release tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
northword authored Aug 8, 2024
1 parent a5e1133 commit c1d54ef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ jobs:

- run: |
echo ${{ steps.metadata.outputs.value }}
echo ${{ needs.check.outputs.commit_hash }}
mv app/build/outputs/apk/dev/debug/app-dev-debug.apk app/build/outputs/apk/dev/debug/app-dev-debug-${{ steps.metadata.outputs.value }}-${{ needs.check.outputs.commit_hash }}.apk
# - uses: joutvhu/get-release@v1
# id: latest_release
Expand All @@ -141,7 +143,9 @@ jobs:
# if: ${{ steps.metadata.outputs.elements[0].versionName != steps.latest_release.outputs.tag_name }}
uses: ncipollo/release-action@v1
with:
tag: ${{ needs.check.outputs.commit_hash }}
name: "${{ steps.metadata.outputs.value }}-${{ needs.check.outputs.commit_hash }}"
tag: ${{ steps.metadata.outputs.value }}
allowUpdates: true
name: ${{ steps.metadata.outputs.value }}
body: 'Please see https://github.com/zotero/zotero-android/commits/master/ for changelog.'
artifacts: "app/build/outputs/apk/dev/debug/*.apk"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c1d54ef

Please sign in to comment.