This commit is contained in:
Ayaz Salikhov
2022-05-12 23:13:34 +03:00
parent 739003d144
commit f7bc1c1b31
3 changed files with 5 additions and 3 deletions

View File

@@ -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/**"

View File

@@ -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 }}

View File

@@ -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 }}