Skip to content

Commit

Permalink
Properly name GitHub Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
AChep committed Jan 6, 2024
1 parent f97c8e6 commit cae54f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/new_tag_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,14 @@ jobs:
with:
name: app-android
path: artifacts
- id: vars
run: |
echo ::set-output name=tag::${GITHUB_REF:11}
- name: "Create release"
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: Release ${{ github.ref }}
name: Release ${{ steps.vars.outputs.tag }}
body: ${{ steps.changelog.outputs.changelog }}
token: ${{ secrets.GITHUB_TOKEN }}
files: |
Expand Down

0 comments on commit cae54f2

Please sign in to comment.