Skip to content

refactor: edit workflow files #18

refactor: edit workflow files

refactor: edit workflow files #18

Workflow file for this run

name: Build & Deploy Web
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/flutter-action@v1
with:
channel: 'stable'
flutter-version: '3.16.5'
- name: Get dependencies
run: flutter pub get
- name: Test project
run: flutter test
- name: Build release project
run: flutter build web
- name: Show dir
run: ls
- name: Upload production-ready build files
uses: actions/upload-artifact@v2
with:
name: production-files
path: build/web
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: production-files
path: build/web
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACTION_TOKEN }}
publish_dir: build/web