From 23d522948de1c7dd5c8103410ef6385de7b8c21f Mon Sep 17 00:00:00 2001 From: Mohammad Wasil Date: Tue, 23 Apr 2024 19:15:27 +0200 Subject: [PATCH] inherit secrets --- .github/workflows/docker.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 81a86b2..ae443de 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -39,6 +39,7 @@ jobs: # source image is based on jupyter/pytorch-notebook source-cuda11-pytorch_2_2_2: uses: ./.github/workflows/docker-build-test-upload.yml + secrets: inherit with: parent-image: "" image: pytorch-notebook @@ -48,6 +49,7 @@ jobs: # cuda 11 base-gpu-notebook-cuda11: needs: [source-cuda11-pytorch_2_2_2] + secrets: inherit uses: ./.github/workflows/docker-build-test-upload.yml with: parent-image: pytorch-notebook @@ -59,6 +61,7 @@ jobs: ml-notebook-cuda11: needs: [base-gpu-notebook-cuda11] + secrets: inherit uses: ./.github/workflows/docker-build-test-upload.yml with: parent-image: base-gpu-notebook @@ -70,6 +73,7 @@ jobs: nlp-notebook-cuda11: needs: [ml-notebook-cuda11] + secrets: inherit uses: ./.github/workflows/docker-build-test-upload.yml with: parent-image: ml-notebook @@ -82,6 +86,7 @@ jobs: # cuda12 source-cuda12-pytorch_2_2_2: uses: ./.github/workflows/docker-build-test-upload.yml + secrets: inherit with: parent-image: "" image: pytorch-notebook @@ -91,6 +96,7 @@ jobs: base-gpu-notebook-cuda12: needs: [source-cuda12-pytorch_2_2_2] + secrets: inherit uses: ./.github/workflows/docker-build-test-upload.yml with: parent-image: pytorch-notebook @@ -102,6 +108,7 @@ jobs: ml-notebook-cuda12: needs: [base-gpu-notebook-cuda12] + secrets: inherit uses: ./.github/workflows/docker-build-test-upload.yml with: parent-image: base-gpu-notebook @@ -113,6 +120,7 @@ jobs: nlp-notebook-cuda12: needs: [ml-notebook-cuda12] + secrets: inherit uses: ./.github/workflows/docker-build-test-upload.yml with: parent-image: ml-notebook