Skip to content

Commit

Permalink
remove skip ci annotation on commit, not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
jflamy committed Jul 22, 2024
1 parent 03934b1 commit f8de5b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ jobs:
git config user.email "$(Build.RequestedForEmail)"
git config user.name "$(Build.RequestedFor)"
git checkout $(Build.SourceBranchName)
git add -A && git commit -m "$(Revision) [skip ci]" --allow-empty
# no need to do [skip ci] because we have trigger: none
git add -A && git commit -m "$(Revision)" --allow-empty
git tag $(Revision) -f -a -m "$(Revision)"
git push https://$(repoToken)@github.com/$(repoUser)/owlcms4.git $(Revision) --force
displayName: tag origin
Expand Down

0 comments on commit f8de5b4

Please sign in to comment.