diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index 9a17f308..8806ac51 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -10,6 +10,7 @@ on: - ".github/workflows/sub-build-push-image.yml" - ".github/workflows/sub-test-image.yml" - ".github/actions/create-dev-env/action.yml" + - ".github/actions/load-image/action.yml" - "all-spark-notebook/**" - "base-notebook/**" @@ -32,6 +33,7 @@ on: - ".github/workflows/sub-build-push-image.yml" - ".github/workflows/sub-test-image.yml" - ".github/actions/create-dev-env/action.yml" + - ".github/actions/load-image/action.yml" - "all-spark-notebook/**" - "base-notebook/**" diff --git a/.github/workflows/sub-build-push-image.yml b/.github/workflows/sub-build-push-image.yml index b432dd94..18aaf48f 100644 --- a/.github/workflows/sub-build-push-image.yml +++ b/.github/workflows/sub-build-push-image.yml @@ -1,4 +1,4 @@ -name: Download parent image, build new one, push it to GitHub artifacts +name: Download parent image, build new one, upload it to GitHub artifacts on: workflow_call: @@ -31,7 +31,7 @@ jobs: - name: Download parent built image 📥 if: ${{ inputs.parentImage != '' }} - uses: ./.github/actions/create-dev-env + uses: ./.github/actions/load-image with: image: ${{ inputs.parentImage }} platform: ${{ inputs.platform }} diff --git a/.github/workflows/sub-test-image.yml b/.github/workflows/sub-test-image.yml index 4fb1b464..73b1db9d 100644 --- a/.github/workflows/sub-test-image.yml +++ b/.github/workflows/sub-test-image.yml @@ -26,7 +26,7 @@ jobs: uses: ./.github/actions/create-dev-env - name: Download built image 📥 - uses: ./.github/actions/create-dev-env + uses: ./.github/actions/load-image with: image: ${{ inputs.image }} platform: ${{ inputs.platform }}