Skip to content

version update

version update #9

Workflow file for this run

name: Analyze, Build and Deploy
on: [push]
jobs:
semantic-pull-request:
name: "Semantic"
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
# analyze:
# name: "Analyze"
# uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
# with:
# flutter_channel: stable
# flutter_version: 3.3.8
build:
name: Build
needs: [semantic-pull-request]
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v3
- name: 🐦 Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: '3.7.2'
- name: 📦 Install Dependencies
run: |
flutter pub global activate very_good_cli
very_good --analytics false
very_good packages get --recursive
with:

Check failure on line 34 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Analyze, Build and Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 34, Col: 9): Unexpected value 'with'
very_good_cli: "0.19.1"
- name: 🛠️ Build the application
run: flutter build web -t lib/main_production.dart
- name: ⬇️ Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: build
path: build/web
deploy:
name: "Deploy"
runs-on: ubuntu-latest
needs: build
steps:
- name: 📚 Checkout repo
uses: actions/checkout@v3
- name: ⬇️ Download Artifact
uses: actions/download-artifact@master
with:
name: build
path: build/web
- name: 🎯 Deploy to firebase
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_OVERLAY_SEARCH }}'
channelId: live
projectId: overlay-search