Skip to content

Commit

Permalink
fix: docker build arg
Browse files Browse the repository at this point in the history
  • Loading branch information
froid1911 committed Feb 26, 2024
1 parent 609f7e8 commit 01b5599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
dockerfile_directory: ./frontend
dockerfile_name: Dockerfile
process_type: web
docker_options: "--build-arg ${{secrets.NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST}}"
docker_options: '--build-arg NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST="${{ secrets.NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST }}"'
- name: Build, Push and Release Wundergraph to Heroku. # Your custom step name
uses: gonuit/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
dockerfile_directory: ./frontend
dockerfile_name: Dockerfile
process_type: web
docker_options: "--build-arg ${{secrets.NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST}}"
docker_options: '--build-arg NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST="${{ secrets.NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST }}"'
- name: Build, Push and Release Wundergraph to Heroku. # Your custom step name
uses: gonuit/[email protected]
with:
Expand Down

0 comments on commit 01b5599

Please sign in to comment.