Skip to content

Updated issue templates (#1579) #14

Updated issue templates (#1579)

Updated issue templates (#1579) #14

Workflow file for this run

name: Master Push CI/CD
on:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
score:
name: "Score Package"
uses: ./.github/workflows/score.yml
analyse-test:
name: "Analyse & Test"
uses: ./.github/workflows/analyse-test.yml
build-io:
name: "Build IO Example Apps"
needs: analyse-test
uses: ./.github/workflows/build-io.yml
build-web:
name: "Build & Deploy Web Example App"
runs-on: ubuntu-latest
needs: analyse-test
defaults:
run:
working-directory: ./example
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Flutter Environment
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Build Web Application
run: flutter build web --web-renderer canvaskit
- name: Archive Artifact
uses: actions/[email protected]
with:
name: web-build
path: example/build/web
if-no-files-found: error
- name: Publish Live Web App
uses: FirebaseExtended/action-hosting-deploy@main
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_FLEAFLET }}"
channelId: live
projectId: fleaflet-firebase