File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 19
19
env :
20
20
PYTHON_VERSION : ${{ vars.PYTHON_VERSION }}
21
21
outputs :
22
- updated_parent_types : ${{ steps.run-build .outputs.updated_parent_types }}
22
+ updated_parent_types : ${{ steps.run-compile .outputs.updated_parent_types }}
23
23
steps :
24
24
- name : Checkout repository
25
25
uses : actions/checkout@v4
@@ -38,12 +38,17 @@ jobs:
38
38
- name : Install dependencies
39
39
run : python -m pip install pip-tools
40
40
41
- - name : Run build
42
- id : run-build
41
+ - name : Run compile
42
+ id : run-compile
43
43
run : |
44
- bash cicd-deployment-scripts/pi/build .sh \
44
+ bash cicd-deployment-scripts/pi/compile .sh \
45
45
-p "${{ github.event.pull_request.number }}"
46
46
47
+ - name : Dump job context
48
+ env :
49
+ JOB_CONTEXT : ${{ toJson(job) }}
50
+ run : echo "$JOB_CONTEXT"
51
+
47
52
pi-build :
48
53
name : ' Parent Images: Build'
49
54
runs-on : ubuntu-latest
59
64
IMAGE_TAG : ${{ github.event_name == 'release' && github.event.release.tag_name || github.event.pull_request.head.ref }}
60
65
strategy :
61
66
matrix :
62
- parent_image_type : ${{ toJson (needs.pi-compile.outputs.updated_parent_types) }}
67
+ parent_image_type : ${{ fromJson (needs.pi-compile.outputs.updated_parent_types) }}
63
68
steps :
64
- - name : Dump needs context
65
- env :
66
- NEEDS_CONTEXT : ${{ toJson(needs) }}
67
- run : echo "$NEEDS_CONTEXT"
68
-
69
69
- name : Checkout repository
70
70
uses : actions/checkout@v4
71
71
with :
File renamed without changes.
You can’t perform that action at this time.
0 commit comments