Merge pull request #362 from nwplus/hackcamp2023_dev #351
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
name: Continuous deployment to firebase hosting | |
on: | |
workflow_dispatch: | |
inputs: | |
targetedHackathon: | |
description: 'Targetted hackathon to build' | |
required: true | |
push: | |
branches: [hackcamp2023_dev, hackcamp2023_main] | |
jobs: | |
firebase_deploy: | |
runs-on: ubuntu-latest | |
env: | |
IS_PRODUCTION: ${{ endsWith(github.ref, 'main') || endsWith(github.event.inputs.targetedHackathon, 'main') }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- name: Set up firebase | |
run: sudo npm install -g firebase-tools --unsafe | |
- name: Choose dev firebase project | |
if: ${{ env.IS_PRODUCTION == 'false' }} | |
run: firebase use nwplus-ubc-dev --token ${{ secrets.FIREBASE_TOKEN }} | |
- name: Choose prod firebase project | |
if: ${{ env.IS_PRODUCTION == 'true' }} | |
run: firebase use ${{ secrets.PROD_FIREBASE_PROJECT_ID }} --token ${{ secrets.FIREBASE_TOKEN }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build with dev env variables | |
if: ${{ env.IS_PRODUCTION == 'false' }} | |
run: yarn build:staging | |
env: | |
NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.DEV_FIREBASE_API_KEY }} | |
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: ${{ secrets.DEV_FIREBASE_AUTH_DOMAIN }} | |
NEXT_PUBLIC_FIREBASE_DATABASE_URL: ${{ secrets.DEV_FIREBASE_DATABASE_URL }} | |
NEXT_PUBLIC_FIREBASE_PROJECT_ID: ${{ secrets.DEV_FIREBASE_PROJECT_ID }} | |
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: ${{ secrets.DEV_FIREBASE_STORAGE_BUCKET }} | |
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.DEV_FIREBASE_MESSAGING_SENDER_ID }} | |
NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.DEV_FIREBASE_APP_ID }} | |
- name: Build with prod env variables | |
if: ${{ env.IS_PRODUCTION == 'true' }} | |
run: yarn build:prod | |
- name: Check for targeted hackathon | |
if: ${{ !github.event.inputs.targetedHackathon }} | |
run: firebase deploy --only hosting:${GITHUB_REF#refs/*/} --non-interactive --token ${{ secrets.FIREBASE_TOKEN }} | |
- name: Deploy to site associated with branch name | |
if: ${{ github.event.inputs.targetedHackathon }} | |
run: firebase deploy --only hosting:${{ github.event.inputs.targetedHackathon }} --non-interactive --token ${{ secrets.FIREBASE_TOKEN }} |