Add icad deploy script and config #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy viewer to icad github pages | |
on: | |
push: | |
branches: ['support-for-tomosynthesis-multiframe-segmentation-deployment'] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Checkout cornerstone3D | |
uses: actions/checkout@v3 | |
with: | |
repository: gradienthealth/cornerstone3D-beta | |
ref: support-for-tomosynthesis-multiframe-segmentation-deployment | |
path: ./cornerstone3D | |
- name: Build cornerstone3D | |
run: | | |
cd ./cornerstone3D | |
yarn install | |
yarn build:all | |
- name: Checkout GradientExtensionsAndModes | |
uses: actions/checkout@v3 | |
with: | |
repository: gradienthealth/GradientExtensionsAndModes | |
ref: support-for-tomosynthesis-multiframe-segmentation-deployment | |
path: ./GradientExtensionsAndModes | |
- name: Checkout Viewers | |
uses: actions/checkout@v3 | |
with: | |
repository: gradienthealth/Viewers | |
path: ./Viewers | |
- name: Link | |
run: | | |
cd ./cornerstone3D/packages/adapters/dist | |
yarn link | |
cd ../../core/dist | |
yarn link | |
cd ../../dicomImageLoader/dist | |
yarn link | |
#cd ../../nifti-volume-loader/dist | |
#yarn link | |
cd ../../streaming-image-volume-loader/dist | |
yarn link | |
cd ../../tools/dist | |
yarn link | |
cd ../../../../Viewers | |
yarn link @cornerstonejs/adapters | |
yarn link @cornerstonejs/core | |
yarn link @cornerstonejs/dicom-image-loader | |
#yarn link @cornerstonejs/nifti-volume-loader | |
yarn link @cornerstonejs/streaming-image-volume-loader | |
yarn link @cornerstonejs/tools | |
yarn install | |
yarn run cli link-extension ../GradientExtensionsAndModes/extensions/ohif-gradienthealth-extension | |
yarn run cli link-mode ../GradientExtensionsAndModes/modes/cohort | |
yarn run cli link-mode ../GradientExtensionsAndModes/modes/breast-density-mode | |
yarn run build:icad | |
- name: Checkout gh page | |
uses: actions/checkout@v3 | |
with: | |
repository: gradienthealth/icad-gradienthealth | |
path: ./icad-gradienthealth | |
token: ${{ secrets.GH_DEPLOY_TOKEN }} | |
- name: Copy | |
run: | | |
mv ./icad-gradienthealth/.git /tmp/ | |
rm -r ./icad-gradienthealth | |
cp -r ./Viewers/platform/app/dist/ ./icad-gradienthealth | |
mv /tmp/.git ./icad-gradienthealth | |
cd ./icad-gradienthealth | |
cp index.html 404.html | |
git config --global user.name "Adithyan-Dinesh-Trenser" | |
git config --global user.email "[email protected]" | |
git remote set-url origin https://Adithyan-Dinesh-Trenser:${{ secrets.GH_DEPLOY_TOKEN }}@github.com/gradienthealth/icad-gradienthealth | |
git add . | |
git commit -a -m "publishing viewer" | |
git push -u origin |