We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56d0250 commit 4bc49d3Copy full SHA for 4bc49d3
.github/workflows/publish.yaml
@@ -18,10 +18,14 @@ jobs:
18
with:
19
username: ${{ secrets.DOCKERHUB_USERNAME }}
20
password: ${{ secrets.DOCKERHUB_TOKEN }}
21
+ -
22
+ name: Get the version
23
+ id: get_version
24
+ run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
25
-
26
name: Build and push
27
id: docker_build
28
uses: docker/build-push-action@v2
29
30
push: true
- tags: kubefirst/nebulous:${GITHUB_REF##*/}
31
+ tags: kubefirst/nebulous:${{ steps.get_version.outputs.VERSION }}
0 commit comments