Skip to content

Commit

Permalink
Fix: Build step conditionality (#184)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Watkins <[email protected]>
  • Loading branch information
ModeSevenIndustrialSolutions authored Oct 30, 2024
1 parent a35381c commit 2049eee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ jobs:

- name: "Build Python project [ with attestation ]"
id: python-build-attest
if: inputs.attest_artefacts == 'true'
if: inputs.ATTEST_ARTEFACTS == 'true'
uses: os-climate/osc-github-devops/.github/actions/python-project-build@main
with:
attest_artefacts: true

- name: "Build Python project [ no attestation ]"
id: python-build
if: inputs.attest_artefacts == 'false'
if: inputs.ATTEST_ARTEFACTS == 'false'
uses: os-climate/osc-github-devops/.github/actions/python-project-build@main
with:
attest_artefacts: false
Expand Down

0 comments on commit 2049eee

Please sign in to comment.