Do not fail if tag exists
This commit is contained in:
parent
8938fe3a19
commit
cdc4c1e9e1
2
.github/workflows/tag.yml
vendored
2
.github/workflows/tag.yml
vendored
|
@ -19,4 +19,4 @@ jobs:
|
||||||
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
git config --local user.name "github-actions[bot]"
|
git config --local user.name "github-actions[bot]"
|
||||||
git tag "v${{ steps.determine-version.outputs.version }}" -a -m "Create new release"
|
git tag "v${{ steps.determine-version.outputs.version }}" -a -m "Create new release"
|
||||||
git push origin "v${{ steps.determine-version.outputs.version }}"
|
git push origin "v${{ steps.determine-version.outputs.version }}" || echo "Tag already exists, skipping."
|
||||||
|
|
Loading…
Reference in New Issue
Block a user