File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build MkDocs
2+ on :
3+ workflow_dispatch :
4+ push :
5+ branches :
6+ - release
7+
8+ jobs :
9+ sync :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Checkout to documentation branch
15+ run : |
16+ git fetch
17+ git checkout ${{ github.ref_name }}
18+
19+ - name : Deploy docs
20+ uses : mhausenblas/mkdocs-deploy-gh-pages@master
21+ env :
22+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23+ CONFIG_FILE : mkdocs.yaml
24+ EXTRA_PACKAGES : build-base
Original file line number Diff line number Diff line change 1- on :
1+ name : Publish new plugin version
2+ on :
23 push :
34 branches :
45 - release
1112 - uses : actions/checkout@v2
1213 - uses : dart-lang/setup-dart@v1
1314
14- - name : Run Pub Publish
15- run : dart pub publish --force
15+ - name : Publish
16+ uses : sakebook/actions-flutter-pub-publisher@v1.3.1
17+ with :
18+ credential : ${{ secrets.PUB_CREDENTIALS }}
19+ flutter_package : true
20+ skip_test : true
21+ dry_run : true
Original file line number Diff line number Diff line change 1111
1212* /** /pubspec.lock
1313pubspec.lock
14+ venv /
15+ site /
1416
1517# IntelliJ related
1618* .iml
You can’t perform that action at this time.
0 commit comments