Skip to content

Commit

Permalink
fix(workflow): missing git push arg
Browse files Browse the repository at this point in the history
Signed-off-by: vados <vados@vadosware.io>
  • Loading branch information
t3hmrman committed Jul 30, 2023
1 parent 1b04428 commit 02d0f29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ release-major:
{{git}} commit -am "release: v`just print-version`"
{{git}} push
{{git}} tag v`just print-version`
{{git}} push v`just print-version`
{{git}} push origin v`just print-version`
if [ "{{publish_crate}}" = "yes" ]; then \
{{cargo}} publish; \
fi
Expand All @@ -143,7 +143,7 @@ release-minor:
{{git}} commit -am "release: v`just print-version`"
{{git}} push
{{git}} tag v`just print-version`
{{git}} push v`just print-version`
{{git}} push origin v`just print-version`
if [ "{{publish_crate}}" = "yes" ]; then \
{{cargo}} publish; \
fi
Expand All @@ -156,7 +156,7 @@ release-patch:
{{git}} commit -am "release: v`just print-version`"
{{git}} push
{{git}} tag v`just print-version`
{{git}} push v`just print-version`
{{git}} push origin v`just print-version`
if [ "{{publish_crate}}" = "yes" ]; then \
{{cargo}} publish; \
fi

0 comments on commit 02d0f29

Please sign in to comment.