Skip to content

Bump file_picker from 6.1.1 to 6.2.0 (#33) #67

Bump file_picker from 6.1.1 to 6.2.0 (#33)

Bump file_picker from 6.1.1 to 6.2.0 (#33) #67

Workflow file for this run

name: Web Release
on:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Create Web Build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/[email protected]
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.9'
- name: Get dependencies
run: flutter pub get
- name: Start Web Release Build
run: flutter build web --release --base-href "/${{ github.event.repository.name }}/"
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './build/web'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4