Skip to content
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.

manually apply git tag #124

Merged
merged 1 commit into from
Feb 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ jobs:
commit_user_email: hello@grouparoo.com
commit_author: Grouparoo Bot <hello@grouparoo.com>
branch: ${{ github.head_ref }}
tagging_message: v${{ env.CORE_VERSION }}
# tagging_message: v${{ env.CORE_VERSION }}
- name: git tag # This shouldn't be necessary if the above could push & tag at once
run: if git rev-parse v${{ env.CORE_VERSION }} >/dev/null 2>&1; then echo 'tag exists'; else git tag v${{ env.CORE_VERSION }} && git push origin --tags; fi