Skip to content

Commit

Permalink
github-actions: fixed publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey28 committed Oct 17, 2023
1 parent 37bb298 commit 48bb40a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,24 @@ jobs:
with:
node-version: 18

- run: npm ci --force

- run: cd demo-app && npm i --force && cd ..

- uses: DevExpress/testcafe-build-system/actions/build-npm@main
- run: npm run build

- shell: bash
run: |
mkdir .builds
npm pack --pack-destination .builds
npm pack -ws --pack-destination .builds || echo No workspaces
- uses: actions/upload-artifact@v3
with:
name: npm
path: |
.builds/
package-lock.json
- uses: DevExpress/testcafe-build-system/actions/login-npm@main
with:
Expand Down

0 comments on commit 48bb40a

Please sign in to comment.