Skip to content

Commit be74fe9

Browse files
committed
Use different GH action for deployment
1 parent f07f6e2 commit be74fe9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build-and-deploy:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-18.04
1414
if: "!contains(github.event.head_commit.message, 'ci skip')"
1515
steps:
1616
- name: Checkout
@@ -24,8 +24,7 @@ jobs:
2424
npx qx compile --target=build -v
2525
2626
- name: Deploy
27-
uses: JamesIves/github-pages-deploy-action@releases/v2
27+
uses: peaceiris/actions-gh-pages@v3
2828
with:
29-
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30-
BRANCH: gh-pages # The branch the action should deploy to.
31-
FOLDER: compiled/build # The folder the action should deploy.
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: ./compiled/build

0 commit comments

Comments
 (0)