Skip to content

Update view_auctions_view.dart #43

Update view_auctions_view.dart

Update view_auctions_view.dart #43

Workflow file for this run

name: Analyze, Build and Deploy
on:
push:
branches:
- master
paths:
- "lib/**"
- "test/**"
- "web/**"
- "assets/**"
- "pubspec.yaml"
- ".github/workflows/**"
- "firebase.json"
pull_request:
branches:
- master
jobs:
build:
name: Build
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.16.0
- name: 📦 Install Dependencies
run: |
flutter pub get
- name: 🛠️ Build the application
run: flutter build web -t lib/main.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.TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_RAINBOWBID_A4892 }}"
channelId: live
projectId: "${{ secrets.FIREBASE_PROJECT_ID }}"