Skip to content

Create FUNDING.yml

Create FUNDING.yml #4

Workflow file for this run

name: web
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create secrets.json from repository secret
run: echo $SECRETS_JSON_BASE64 | base64 -d > assets/secrets.json
env:
SECRETS_JSON_BASE64: ${{ secrets.SECRETS_JSON_BASE64 }}
- name: Install flutter
uses: subosito/flutter-action@v1.5.3
with:
flutter-version: '2.10.1'
- run: flutter config --enable-web
- run: flutter pub get
- run: flutter pub run build_runner build
- run: flutter build web --base-href /
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: web-build
path: build/web
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: web-build
- name: Deploy to Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/web
cname: stops.jeffsieu.com