We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b797ba commit d926d1cCopy full SHA for d926d1c
lib/entrypoint.sh
@@ -75,8 +75,11 @@ if ! git diff --cached --quiet --exit-code; then
75
echo "Tagging commit..."
76
tag
77
78
- echo "Pushing to repo..."
79
- git push --set-upstream origin "$INPUT_REF" --tags
+ echo "Pushing commits to repo..."
+ git push --set-upstream origin "$INPUT_REF"
80
+
81
+ echo "Pushing tags to repo..."
82
+ git push --set-upstream origin "$INPUT_REF" --force --tags
83
84
echo "::endgroup::"
85
echo "Task completed."
0 commit comments