ci: attempt 1 to access env in staging env #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file was auto-generated by the Firebase CLI | |
# https://github.com/firebase/firebase-tools | |
name: Deploy Frontend to Firebase Hosting | |
on: | |
push: | |
branches: | |
- stg | |
paths: | |
- "frontend/**" | |
- ".github/workflows/firebase-hosting-staging.yml" | |
workflow_dispatch: | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
environment: staging | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
- name: Cache Next.js build | |
uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/frontend/.next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies and build | |
env: | |
APP_ENV: staging | |
NEXT_PUBLIC_API_BASE_URL: ${{ vars.NEXT_PUBLIC_API_BASE_URL }} | |
run: | | |
cd frontend | |
npm ci | |
npm install sharp | |
npm run build | |
- name: Debug Variables | |
run: | | |
echo "Using vars context: ${{ vars.NEXT_PUBLIC_API_BASE_URL }}" | |
echo "Current branch: ${{ github.ref_name }}" | |
echo "All environment variables:" | |
env | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_SCHEMESSG_V3_DEV }} | |
channelId: live | |
projectId: schemessg-v3-dev | |
target: staging | |
entryPoint: ./frontend | |
env: | |
FIREBASE_CLI_EXPERIMENTS: webframeworks | |
NEXT_PUBLIC_API_BASE_URL: ${{ vars.NEXT_PUBLIC_API_BASE_URL }} |