Skip to content

Commit

Permalink
fix(docker): change get tag logic on ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
kioqq committed Jul 19, 2023
1 parent 7b47fa6 commit b0d670a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Get Github tag
id: meta
run: |
echo "::set-output name=tag::$(git describe --always --tags --match='v*')"
echo "::set-output name=tag::$(git describe --always --tags --match='v*' | awk -F- '{print $1}')"
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit b0d670a

Please sign in to comment.