Skip to content

Commit

Permalink
ci(GITHUB): squash
Browse files Browse the repository at this point in the history
  • Loading branch information
niall-byrne committed Sep 14, 2024
1 parent 19e7b8f commit 5ac1506
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/job-95-generic-build_artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ on:
description: "Optional, allows you to use poetry as part of your build."
required: false
type: boolean
REQUIRES_PYTHON:
default: "false"
description: "Optional, allows you to use setup a python version as part of your build."
required: false
type: string
REQUIRES_QEMU:
default: false
description: "Optional, allows you to use docker support for QEMU as part of your build."
Expand Down Expand Up @@ -104,6 +109,12 @@ jobs:
with:
fetch-depth: 1

- name: Build and Upload Artifact -- Set up Python ${{ inputs.REQUIRES_PYTHON }}
if: inputs.REQUIRES_PYTHON != 'false'
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.REQUIRES_PYTHON }}

- name: Build and Upload Artifact -- Install Toolbox
uses: ./.github/actions/action-00-toolbox

Expand Down

0 comments on commit 5ac1506

Please sign in to comment.