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 ec591cd commit f092442Copy full SHA for f092442
.github/workflows/build-and-deploy.yml
@@ -0,0 +1,25 @@
1
+name: Build and Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ build-and-deploy:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
+ with:
13
+ persist-credentials: false
14
+
15
+ - name: Install and Build
16
+ run: |
17
+ npm install @qooxdoo/compiler
18
+ npx qx compile --target=build -v
19
20
+ - name: Deploy
21
+ uses: JamesIves/github-pages-deploy-action@releases/v3
22
23
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
24
+ BRANCH: gh-pages # The branch the action should deploy to.
25
+ FOLDER: compiled/build # The folder the action should deploy.
.travis.yml
0 commit comments