Skip to content

Commit

Permalink
Merge pull request #1371 from ivmartel/669-typings
Browse files Browse the repository at this point in the history
669 typings
  • Loading branch information
ivmartel authored May 19, 2023
2 parents 8145f40 + 5850927 commit bfcb13d
Show file tree
Hide file tree
Showing 86 changed files with 14,661 additions and 40,521 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ jobs:
run: |
rm -Rf ./node_modules/*
yarn install --prod --frozen-lockfile
cp -Rf node_modules ./build
cp -Rf decoders ./build
cp -Rf tests/pacs/viewer.* ./build
./resources/scripts/prep-deploy.sh -f build/viewer.html
./resources/scripts/prep-deploy.sh -f build/viewer.js
cp -Rf dist ./build/demo
cp -Rf node_modules ./build/demo
cp -Rf decoders ./build/demo
cp -Rf tests/pacs/viewer.* ./build/demo
./resources/scripts/prep-deploy.sh -f build/demo/viewer.html
./resources/scripts/prep-deploy.sh -f build/demo/viewer.js
- name: Push to gh-pages (if master or develop branch)
if: env.IS_PUSH_DEVELOP == 'true' || env.IS_PUSH_MASTER == 'true'
run: |
Expand All @@ -51,7 +52,7 @@ jobs:
git config user.name github-actions
git checkout gh-pages
rm -Rf $DEPLOY_DIR$ALL
cp -Rf ./build/* $DEPLOY_DIR
cp -Rf ./build/demo/* $DEPLOY_DIR
git add -A $DEPLOY_DIR
git diff-index --quiet HEAD ||
git commit -m "CI run ${{ github.run_number }} pushed to gh-pages"
Expand Down
Loading

0 comments on commit bfcb13d

Please sign in to comment.