We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eefa9a1 commit 00b17baCopy full SHA for 00b17ba
.github/workflows/ci.yaml
@@ -24,10 +24,10 @@ jobs:
24
-
25
name: Build and push
26
run: |
27
- version = cat Dockerfile | grep 'wg_go_tag=' | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+'
+ export VERSION=$(cat Dockerfile | grep 'wg_go_tag=' | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+')
28
29
- TAG=$version make build
30
- # TAG=$version make push
+ TAG=$VERSION make build
+ # TAG=$VERSION make push
31
32
TAG=latest make build
33
# TAG=latest make push
0 commit comments