Skip to content

Commit

Permalink
ci: use env instead of vars
Browse files Browse the repository at this point in the history
  • Loading branch information
longwind48 committed Dec 15, 2024
1 parent cb95edd commit c499fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install dependencies and build
env:
APP_ENV: staging
NEXT_PUBLIC_API_BASE_URL: ${{ vars.NEXT_PUBLIC_API_BASE_URL }}
NEXT_PUBLIC_API_BASE_URL: ${{ env.NEXT_PUBLIC_API_BASE_URL }}
run: |
cd frontend
npm ci
Expand All @@ -53,4 +53,4 @@ jobs:
entryPoint: ./frontend
env:
FIREBASE_CLI_EXPERIMENTS: webframeworks
NEXT_PUBLIC_API_BASE_URL: ${{ vars.NEXT_PUBLIC_API_BASE_URL }}
NEXT_PUBLIC_API_BASE_URL: ${{ env.NEXT_PUBLIC_API_BASE_URL }}

0 comments on commit c499fa4

Please sign in to comment.