Skip to content

Commit

Permalink
tag name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-wedensday committed Apr 18, 2024
1 parent 6bc5ca1 commit 1bff995
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,16 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set tag name
id: set_tag_name
run: echo "::set-output name=tag_name::${{ github.ref }}"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
tag_name: ${{ steps.set_tag_name.outputs.tag_name }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
Expand Down

0 comments on commit 1bff995

Please sign in to comment.