-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add actions script to build example app and publish to GitHub …
…Pages
- Loading branch information
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Deploy example to Pages | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
|
||
- uses: dart-lang/setup-dart@v1 | ||
|
||
- name: Clone Flutter repository with stable channel | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: stable | ||
cache: true | ||
|
||
- name: Dart pub cache | ||
uses: actions/cache@v4 | ||
id: pub-cache | ||
with: | ||
path: ~/.pub-cache | ||
key: ${{ runner.os }}-pub-${{ hashFiles('pubspec.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pub- | ||
- name: Install Melos | ||
run: dart pub global activate melos | ||
|
||
- name: Bootstrap melos | ||
run: melos bootstrap | ||
|
||
- name: Build Flutter Web application | ||
run: flutter build web --wasm --release | ||
working-directory: packages/flutter_password_scoring/example | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
# Upload entire repository | ||
path: 'packages/flutter_password_scoring/example/build/web' | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |