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 be74fe9 commit d789657Copy full SHA for d789657
.github/workflows/build-and-deploy.yml
@@ -18,13 +18,14 @@ jobs:
18
with:
19
persist-credentials: false
20
21
- - name: Install and Build
22
- run: |
23
- npm install @qooxdoo/compiler
24
- npx qx compile --target=build -v
+ - name: Install
+ run: npm install @qooxdoo/compiler --no-save
+
+ - name: Build
25
+ run: npx qx deploy --out=./html --clean --source-maps
26
27
- name: Deploy
28
uses: peaceiris/actions-gh-pages@v3
29
30
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./compiled/build
31
+ publish_dir: ./html
0 commit comments