Skip to content

Commit

Permalink
fix:tag issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-wedensday committed Apr 18, 2024
1 parent b5030d0 commit c23725c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ jobs:
uses: actions/checkout@v2
- name: Set tag name
id: set_tag_name
uses: dawidd6/action-get-tag@v1
with:
strip_v: false
run: |
TAG_NAME="v$(date +'%Y%m%d')-${GITHUB_SHA::8}"
echo "::set-output name=tag_name::$TAG_NAME"
- 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: ${{ steps.set_tag_name.outputs.tag }}
tag_name: ${{ steps.set_tag_name.outputs.tag_name }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
Expand Down

0 comments on commit c23725c

Please sign in to comment.