-
Notifications
You must be signed in to change notification settings - Fork 75
36 lines (35 loc) · 1.01 KB
/
gh_pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: GH-Pages
on:
push:
branches:
- stable
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: master
flutter-version: 3.24.0
- name: Install Package Dependencies
run: flutter pub get
- name: Install Example Dependencies
run: flutter pub get
working-directory: ./example
- name: Build Web
run: flutter build web --release
working-directory: ./example
- name: Deploy
run: |
cd example/build/web
git init
git config user.name "hm21"
git config user.email "[email protected]"
git remote add secure-origin https://username:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
git checkout -b gh-pages
git add .
git commit -m "Deployed Github Pages"
git push --force secure-origin gh-pages