Skip to content

Commit

Permalink
Change input to build-docker to be consistent with existing input in …
Browse files Browse the repository at this point in the history
…build-artifact.yaml
  • Loading branch information
williamlyTT committed Jan 13, 2025
1 parent 802ad92 commit c389ed2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all-post-commit-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
secrets: inherit
with:
os: ubuntu-22.04-amd64
skip-build-docker-image: true
build-docker: false
tt-train-cpp-unit-tests:
needs: build-artifact
secrets: inherit
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ on:
required: false
type: boolean
default: false
skip-build-docker-image:
build-docker:
required: false
type: boolean
default: false
default: true
description: "Build docker image"
workflow_dispatch:
inputs:
os:
Expand All @@ -25,14 +26,15 @@ on:
required: false
type: boolean
default: false
skip-build-docker-image:
build-docker:
required: false
type: boolean
default: false
default: true
description: "Build docker image"

jobs:
build-docker-image:
if: ${{ inputs.skip-build-docker-image != 'true' }}
if: ${{ inputs.build-docker == true }}
uses: ./.github/workflows/build-docker-artifact.yaml
secrets: inherit
with:
Expand Down

0 comments on commit c389ed2

Please sign in to comment.