Skip to content

Commit

Permalink
ci(fix): Another attempt missing NEXT_PUBLIC_APP_ENV in ui build
Browse files Browse the repository at this point in the history
  • Loading branch information
topher-lo committed Jun 22, 2024
1 parent f0d08cf commit babccf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
uses: docker/build-push-action@v6
env:
NEXT_PUBLIC_API_URL: http://localhost:8000
NEXT_PUBLIC_APP_ENV: development
NEXT_PUBLIC_APP_URL: http://localhost:3000
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: "secret-clerk-publishable-key"
NEXT_PUBLIC_DISABLE_AUTH: "true"
Expand All @@ -88,6 +89,7 @@ jobs:
file: frontend/Dockerfile.prod
build-args: |
NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
NEXT_PUBLIC_APP_ENV=$NEXT_PUBLIC_APP_ENV
NEXT_PUBLIC_APP_URL=$NEXT_PUBLIC_APP_URL
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=$NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
NEXT_PUBLIC_DISABLE_AUTH=$NEXT_PUBLIC_DISABLE_AUTH
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-pnpm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
- name: Build project
env:
NEXT_PUBLIC_API_URL: http://localhost:8000
NEXT_PUBLIC_APP_ENV: development
NEXT_PUBLIC_APP_URL: http://localhost:3000
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: "secret-clerk-publishable-key"
NEXT_PUBLIC_DISABLE_AUTH: "true"
Expand Down

0 comments on commit babccf6

Please sign in to comment.