Skip to content

Commit

Permalink
try fix docker var quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
gpmayorga committed Sep 16, 2023
1 parent e23b574 commit 6ddb9a7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ jobs:
- name: Build and push centrifugeio/centrifuge-chain
uses: docker/build-push-action@v5
# env:
env:
features: ${{join(['fast', 'runtime'], '-')}}
# BUILDKIT_PROGRESS: plain
# DOCKER_BUILDKIT: 1
with:
context: .
file: ./docker/centrifuge-chain/Dockerfile
build-args: |
FEATURES=${{ matrix.target == 'test' && join(['fast', 'runtime'], '-') || '' }}
FEATURES=${{ matrix.target == 'test' && '${{ env.features }}' || '' }}
# SCCACHE_GHA_ENABLED="true"
# RUSTC_WRAPPER=sccache
push: ${{ github.ref == '/refs/heads/main' && true || false }}
Expand Down

0 comments on commit 6ddb9a7

Please sign in to comment.