Skip to content

Commit 02c648b

Browse files
committed
Fix Github release workflow
1 parent 7410a1b commit 02c648b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
1717
TAG: ${{ github.ref }}
1818
run: |
19-
VERSION="$TAG" make
19+
VERSION="${TAG:10}" make
2020
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
21-
docker push antrea/antrea-ubuntu:"$TAG"
21+
docker push antrea/antrea-ubuntu:"${TAG:10}"

0 commit comments

Comments
 (0)