Skip to content

Commit 4bc49d3

Browse files
authored
add additional step for tag value
1 parent 56d0250 commit 4bc49d3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ jobs:
1818
with:
1919
username: ${{ secrets.DOCKERHUB_USERNAME }}
2020
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)
2125
-
2226
name: Build and push
2327
id: docker_build
2428
uses: docker/build-push-action@v2
2529
with:
2630
push: true
27-
tags: kubefirst/nebulous:${GITHUB_REF##*/}
31+
tags: kubefirst/nebulous:${{ steps.get_version.outputs.VERSION }}

0 commit comments

Comments
 (0)