Skip to content

Commit

Permalink
trying to fix docker build, so it includes git sha info.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed May 27, 2022
1 parent c7c55ab commit e19ee78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
GIT_VERSION=${{ github.ref_type == "tag" && github.ref_name || github.ref_name + "#" + github.sha }}
GIT_VERSION=${{ github.ref_type == 'tag' && github.ref_name || github.ref_name + '#' + github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
omnibus:
Expand Down Expand Up @@ -154,6 +154,6 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
GIT_VERSION=${{ github.ref_type == "tag" && github.ref_name || github.ref_name + "#" + github.sha }}
GIT_VERSION=${{ github.ref_type == 'tag' && github.ref_name || github.ref_name + '#' + github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit e19ee78

Please sign in to comment.