Skip to content

feat: move angular build to github action #14

feat: move angular build to github action

feat: move angular build to github action #14

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
strategy:
matrix:
include:
- org: Devfest Lille
secret: DEVFEST_FIREBASE_TOKEN
function: "functions:cms4devfestgdg"
target: "default"
front: "devfestlille"
- org: Cloud Nord
secret: CLOUDNORD_FIREBASE_TOKEN
function: "functions:cms4devfestcloudnord"
target: "cloudnord"
front: "cloudnord"
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "20.x"
cache: "npm"
- name: Install Front
run: npm --prefix public install
- name: Build Back
run: npm --prefix functions install
- name: Deploy to Firebase for ${{ matrix.org }}
run: |
npm --prefix public run build -- --configuration ${{ matrix.front }}
npx firebase-tools deploy -P ${{ matrix.target }} --only hosting
npx firebase-tools deploy -P ${{ matrix.target }} --only firestore:rules
npx firebase-tools deploy -P ${{ matrix.target }} --only functions:cms
npx firebase-tools deploy -P ${{ matrix.target }} --only ${{ matrix.function }}
env:
FIREBASE_TOKEN: ${{ secrets[matrix.secret] }}