🎆

GitHub ActionsでFlutter Webをデプロイするyamlメモ

2023/09/07に公開

どうも。
最後にFlutterを触ってからだいぶ期間が空きました。
すべてを忘れてました。
それはいいとして、

前に使ってた物がだいぶ古かったので、色々調べながら作りました。
Actions初心者なのでミスりまくったし、これが最善解なのかわかりませんが、置いておきます。

flutter_web.yaml
name: Deploy Flutter web site to Pages

on:
  push:
    branches: ["main"]
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: "pages"
  cancel-in-progress: false

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Build
        uses: subosito/flutter-action@v2
        with:
          channel: 'stable'
          cache: true
      - run: echo "REPOSITORY_NAME=${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}" >> $GITHUB_ENV
      - run: flutter pub get
      - run: flutter build web --web-renderer html --base-href /${{ env.REPOSITORY_NAME }}/

      - name: Upload artifact
        uses: actions/upload-pages-artifact@v2
        with:
          path: ./build/web

  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    needs: build
    steps:
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v2

actions/deploy-pagesで権限が必要になるらしいです。
リポジトリ名の前後の/はflutter的に必要らしいです。

flutter build web --base-href /subdir/

もっといい手がありましたら知りたいです。

Discussion