Skip to content

Commit 9c77a04

Browse files
Fix github resource issue when build latest docker (#7450)
Fixes #7449 ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: YunLiu <55491388+KumoLiu@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f4103c5 commit 9c77a04

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
versioning_dev:
1818
# compute versioning file from python setup.py
1919
# upload as artifact
20-
if: github.repository == 'Project-MONAI/MONAI'
20+
# if: github.repository == 'Project-MONAI/MONAI'
21+
if: ${{ false }} # disable docker build job project-monai/monai#7450
2122
runs-on: ubuntu-latest
2223
steps:
2324
- uses: actions/checkout@v4
@@ -47,8 +48,8 @@ jobs:
4748
rm -rf {*,.[^.]*}
4849
4950
docker_build_dev:
50-
# builds projectmonai/monai:latest
51-
if: github.repository == 'Project-MONAI/MONAI'
51+
# if: github.repository == 'Project-MONAI/MONAI'
52+
if: ${{ false }} # disable docker build job project-monai/monai#7450
5253
needs: versioning_dev
5354
runs-on: ubuntu-latest
5455
steps:

0 commit comments

Comments
 (0)