Skip to content

Commit

Permalink
fix: build args
Browse files Browse the repository at this point in the history
  • Loading branch information
froid1911 committed Feb 26, 2024
1 parent 540300b commit 7e8b4bc
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 NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST="${{ 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 NEXT_PUBLIC_SWITCHBOARD_GRAPHQL_HOST="${{ 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 7e8b4bc

Please sign in to comment.