Skip to content

Commit d789657

Browse files
committed
add --no-save
1 parent be74fe9 commit d789657

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@ jobs:
1818
with:
1919
persist-credentials: false
2020

21-
- name: Install and Build
22-
run: |
23-
npm install @qooxdoo/compiler
24-
npx qx compile --target=build -v
21+
- name: Install
22+
run: npm install @qooxdoo/compiler --no-save
23+
24+
- name: Build
25+
run: npx qx deploy --out=./html --clean --source-maps
2526

2627
- name: Deploy
2728
uses: peaceiris/actions-gh-pages@v3
2829
with:
2930
github_token: ${{ secrets.GITHUB_TOKEN }}
30-
publish_dir: ./compiled/build
31+
publish_dir: ./html

0 commit comments

Comments
 (0)