Skip to content

Commit

Permalink
ci: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-szewczyk committed Oct 26, 2024
1 parent ac3366c commit 49d36c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
**/.classpath
**/.dockerignore
**/.env.local
**/.env
**/.env.*
**/.git
**/.gitignore
**/.project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
context: .
build-args: |
"VITE_API_BASE_URL=${{ secrets.VITE_API_BASE_URL }}"
"VITE_API_BASE_URL=${{ secrets.VITE_API_BASE_URL_PROD }}"
"VITE_CLERK_PUBLISHABLE_KEY=${{ secrets.VITE_CLERK_PUBLISHABLE_KEY_PROD }}"
"VITE_VAPID_PUBLIC_KEY=${{ secrets.VITE_VAPID_PUBLIC_KEY }}"
platforms: linux/amd64,linux/arm64/v8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
env:
VITE_API_BASE_URL: ${{vars.VITE_API_BASE_URL}}
VITE_CLERK_PUBLISHABLE_KEY: ${{secrets.VITE_CLERK_PUBLISHABLE_KEY}}
VITE_API_BASE_URL: ${{vars.VITE_API_BASE_URL_TEST}}
VITE_CLERK_PUBLISHABLE_KEY: ${{secrets.VITE_CLERK_PUBLISHABLE_KEY_TEST}}
APP_BASE_URL: ${{vars.APP_BASE_URL}}
CLERK_SECRET_KEY: ${{secrets.CLERK_SECRET_KEY}}
TEST_ACCOUNT_EMAIL: ${{secrets.TEST_ACCOUNT_EMAIL}}
Expand Down

0 comments on commit 49d36c5

Please sign in to comment.