Skip to content

Commit

Permalink
Fix release docker build step
Browse files Browse the repository at this point in the history
  • Loading branch information
alcounit committed Feb 23, 2021
1 parent 227676a commit 9707b8f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Get tag version
id: get_version
run: echo ::set-output name=VERSION::``${GITHUB_REF#refs/tags/}``
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand All @@ -29,5 +33,7 @@ jobs:
with:
context: .
push: true
build-args: BUILD_VERSION=${{ steps.get_version.outputs.GIT_TAG }}
tags: alcounit/selenosis:${{ steps.get_version.outputs.GIT_TAG }}
build-args: BUILD_VERSION=${{ steps.get_version.outputs.VERSION }}
tags: |
alcounit/selenosis:latest
alcounit/selenosis:${{ steps.get_version.outputs.VERSION }}

0 comments on commit 9707b8f

Please sign in to comment.