name: github pages on: push: branches: - master jobs: deploy: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Setup Flutter run: | git clone https://github.com/flutter/flutter.git --depth 1 -b beta _flutter echo "::add-path::${GITHUB_WORKSPACE}/_flutter/bin" - name: Install run: | cd example flutter config --enable-web flutter pub get - name: Build run: | cd example flutter build web - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./example/build/web