Skip to content

Commit

Permalink
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 1bff995 commit 5556cce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,18 @@ jobs:
uses: actions/checkout@v2
- name: Set tag name
id: set_tag_name
run: echo "::set-output name=tag_name::${{ github.ref }}"
uses: amitsingh-007/next-release-tag@v5.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: 'v'
tag_template: 'yyyy.mm.dd.i'
- 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_name }}
tag_name: ${{ steps.set_tag_name.outputs.next_release_tag }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
Expand Down

0 comments on commit 5556cce

Please sign in to comment.