Skip to content

Commit 00b17ba

Browse files
committed
fix
1 parent eefa9a1 commit 00b17ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
-
2525
name: Build and push
2626
run: |
27-
version = cat Dockerfile | grep 'wg_go_tag=' | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+'
27+
export VERSION=$(cat Dockerfile | grep 'wg_go_tag=' | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+')
2828
29-
TAG=$version make build
30-
# TAG=$version make push
29+
TAG=$VERSION make build
30+
# TAG=$VERSION make push
3131
3232
TAG=latest make build
3333
# TAG=latest make push

0 commit comments

Comments
 (0)