Skip to content

Commit 78a9c9f

Browse files
committed
chore: rename build to compile
1 parent ec86e8e commit 78a9c9f

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/pi_build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
env:
2020
PYTHON_VERSION: ${{ vars.PYTHON_VERSION }}
2121
outputs:
22-
updated_parent_types: ${{ steps.run-build.outputs.updated_parent_types }}
22+
updated_parent_types: ${{ steps.run-compile.outputs.updated_parent_types }}
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
@@ -38,12 +38,17 @@ jobs:
3838
- name: Install dependencies
3939
run: python -m pip install pip-tools
4040

41-
- name: Run build
42-
id: run-build
41+
- name: Run compile
42+
id: run-compile
4343
run: |
44-
bash cicd-deployment-scripts/pi/build.sh \
44+
bash cicd-deployment-scripts/pi/compile.sh \
4545
-p "${{ github.event.pull_request.number }}"
4646
47+
- name: Dump job context
48+
env:
49+
JOB_CONTEXT: ${{ toJson(job) }}
50+
run: echo "$JOB_CONTEXT"
51+
4752
pi-build:
4853
name: 'Parent Images: Build'
4954
runs-on: ubuntu-latest
@@ -59,13 +64,8 @@ jobs:
5964
IMAGE_TAG: ${{ github.event_name == 'release' && github.event.release.tag_name || github.event.pull_request.head.ref }}
6065
strategy:
6166
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) }}
6368
steps:
64-
- name: Dump needs context
65-
env:
66-
NEEDS_CONTEXT: ${{ toJson(needs) }}
67-
run: echo "$NEEDS_CONTEXT"
68-
6969
- name: Checkout repository
7070
uses: actions/checkout@v4
7171
with:
File renamed without changes.

0 commit comments

Comments
 (0)