63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
|
name: Publish to GitHub Pages
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
concurrency:
|
||
|
group: "pages"
|
||
|
cancel-in-progress: false
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Setup cache
|
||
|
uses: actions/cache@v3
|
||
|
with:
|
||
|
path: |
|
||
|
build
|
||
|
key: ${{ runner.OS }}-dateapp-ubuntu-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.OS }}-dateapp-ubuntu-
|
||
|
|
||
|
- name: Install Flutter
|
||
|
uses: subosito/flutter-action@v2
|
||
|
with:
|
||
|
channel: stable
|
||
|
cache: true
|
||
|
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'
|
||
|
|
||
|
- name: Build web
|
||
|
run: flutter build web --release --web-renderer=canvaskit
|
||
|
|
||
|
- name: Upload Pages artifact
|
||
|
uses: actions/upload-pages-artifact@v3
|
||
|
with:
|
||
|
path: build/web
|
||
|
|
||
|
deploy:
|
||
|
needs: build
|
||
|
|
||
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
||
|
permissions:
|
||
|
pages: write # to deploy to Pages
|
||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||
|
|
||
|
# Deploy to the github-pages environment
|
||
|
environment:
|
||
|
name: github-pages
|
||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||
|
|
||
|
# Specify runner + deployment step
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Deploy to GitHub Pages
|
||
|
id: deployment
|
||
|
uses: actions/deploy-pages@v4
|