Skip to content

Commit

Permalink
ci(go): fix errant double quote in publish-go action (#84)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Gianelloni <wolf31o2@blinklabs.io>
  • Loading branch information
wolf31o2 committed Mar 17, 2024
1 parent 139da7c commit bebaf35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/publish-go/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ runs:
git commit -am "GHA: automatic publish: \${RELEASE_VERSION}"
git push origin HEAD:main
if [[ \${RELEASE_VERSION} == v* ]]; then
git tag v\${RELEASE_VERSION} -a v\${RELEASE_VERSION}"
git tag v\${RELEASE_VERSION} -a v\${RELEASE_VERSION}
git push origin v\${RELEASE_VERSION}
fi

0 comments on commit bebaf35

Please sign in to comment.