forked from OHIF/Viewers
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added viewer deploy workflow to icad gh pages
- Loading branch information
1 parent
68c1170
commit b896693
Showing
2 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Deploy viewer to icad github pages | ||
|
||
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: gradienthealth/segmentation_mode_sheet_integration | ||
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: gradienthealth/segmentation_mode_sheet_integration | ||
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 "maya-mohan" | ||
git config --global user.email "[email protected]" | ||
git remote set-url origin https://maya-mohan:${{ secrets.GH_DEPLOY_TOKEN }}@github.com/gradienthealth/icad-gradienthealth | ||
git add . | ||
git commit -a -m "publishing viewer" | ||
git push -u origin |
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