Skip to content

Commit

Permalink
Merge pull request #6 from tinkoff-mobile-tech/fix_push_tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Nov1kov authored May 6, 2022
2 parents ba8f0a4 + 998ea68 commit e1a2668
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/android_lib.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,13 @@ jobs:
fi
- name: Push tag
uses: actions-ecosystem/action-push-tag@v1
with:
tag: ${{ steps.version.outputs.tag_name }}
run: |
tag=${{ steps.version.outputs.tag_name }}
message='${{ steps.version.outputs.tag_name }}'
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git tag -a "${tag}" -m "${message}"
git push origin "${tag}"
- name: Create Release ✅
id: create_release
Expand Down

0 comments on commit e1a2668

Please sign in to comment.