Skip to content

Trigger deploy

Trigger deploy #13

name: Deploy viewer to icad github pages
on:
push:
branches: ['icad-gradienthealth-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: icad-gradienthealth-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: icad-gradienthealth-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