File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 88jobs :
99 build :
1010 runs-on : ubuntu-latest
11- env :
12- my_secret : ${{secrets.GH_TOKEN}}
1311 steps :
1412 - uses : actions/checkout@v2
1513 - uses : subosito/flutter-action@v1
@@ -25,11 +23,10 @@ jobs:
2523 run : |
2624 cd example/build/web
2725 git init
28- git config --global user.email groovinchip@github.com
29- git config --global user.name GroovinChip
30- git status
31- git remote add origin https://${{secrets.GH_TOKEN}}@github.com/GroovinChip/macos_ui.git
26+ git config user.name "CI"
27+ git config user.email "flutter-ci@github.com"
28+ git remote add secure-origin https://${{ secrets.GITHUB_TOKEN }}@github.com/GroovinChip/macos_ui.git
3229 git checkout -b gh-pages
33- git add --all
30+ git add .
3431 git commit -m "update"
35- git push origin gh-pages -f
32+ git push --force secure- origin gh-pages
You can’t perform that action at this time.
0 commit comments