Skip to content

Commit

Permalink
fix(tools): add --tags to print-workspace-status
Browse files Browse the repository at this point in the history
Without --tags, this command was returning an old dirty tag which wasn't
properly tagging the container in docker hub.
  • Loading branch information
jrcichra committed Jan 30, 2025
1 parent e2674c0 commit 77edcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/print-workspace-status
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env sh

echo STABLE_GIT_TAG $(git describe --always --match "v[0-9].*" --dirty)
echo STABLE_GIT_TAG $(git describe --always --tags --match "v[0-9].*" --dirty)

0 comments on commit 77edcf2

Please sign in to comment.