Merge branch 'main' into bugfix/code-change4john

This commit is contained in:
Matt DiMeglio 2025-06-11 15:58:54 -04:00
commit 47c95584da
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ jobs:
fi fi
build: build:
needs: check-inputs needs: check-inputs
if: inputs.workflow_type != 'release' if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release'
environment: ${{ inputs.environments }} environment: ${{ inputs.environments }}
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
permissions: permissions:

View file

@ -53,7 +53,7 @@ jobs:
fi fi
build: build:
needs: check-inputs needs: check-inputs
if: inputs.workflow_type == 'release' if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release'
environment: ${{ inputs.environments }} environment: ${{ inputs.environments }}
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
permissions: permissions: