We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07f6e2 commit be74fe9Copy full SHA for be74fe9
.github/workflows/build-and-deploy.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
build-and-deploy:
13
- runs-on: ubuntu-latest
+ runs-on: ubuntu-18.04
14
if: "!contains(github.event.head_commit.message, 'ci skip')"
15
steps:
16
- name: Checkout
@@ -24,8 +24,7 @@ jobs:
24
npx qx compile --target=build -v
25
26
- name: Deploy
27
- uses: JamesIves/github-pages-deploy-action@releases/v2
+ uses: peaceiris/actions-gh-pages@v3
28
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.
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./compiled/build
0 commit comments