Skip to content

Commit 10b9d6f

Browse files
author
Ben Clark
committed
fix
1 parent b21235f commit 10b9d6f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/zip-release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-node@v1
1515
with:
1616
node-version: 12.x
17-
- name: npm install, zip, upload to git
17+
- name: npm install, zip
1818
run: |
1919
npm install
2020
npm run zip
@@ -34,7 +34,8 @@ jobs:
3434
mv out/index.html .
3535
git add index.html
3636
git commit -m "Update"
37-
- uses: ad-m/github-push-action@master
38-
with:
39-
github_token: ${{ secrets.GITHUB_TOKEN }}
40-
branch: gh-pages
37+
- name: push gh-pages branch
38+
uses: ad-m/github-push-action@master
39+
with:
40+
github_token: ${{ secrets.GITHUB_TOKEN }}
41+
branch: gh-pages

0 commit comments

Comments
 (0)