update build job condition
Some checks are pending
/ validate (push) Successful in 4s
/ build (push) Has started running

This commit is contained in:
Ludovic Cartier
2025-07-21 17:21:22 +02:00
parent a0e1074936
commit f7d7350fcd
3 changed files with 3 additions and 5 deletions

Binary file not shown.

View File

@@ -28,7 +28,6 @@ jobs:
else
echo "build=false" >> $GITHUB_OUTPUT
fi
echo $GITHUB_OUTPUT
- uses: stefanzweifel/git-auto-commit-action@v6
with:
@@ -42,9 +41,8 @@ jobs:
- run: echo "${{ steps.new_version.outputs.build }}"
build:
#needs: validate
#if: jobs.validate.outputs.build == "true"
if: needs.validate.outputs.build == 'true'
needs: validate
if: jobs.validate.outputs.build == "true"
timeout-minutes: 2
runs-on: ubuntu-latest
steps: