passing build job_id to download artifacts #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests on Branch | ||
on: | ||
push: | ||
branches: | ||
- 'feature/sc-126222/update-the-particle-cli-executable-in-workbench' | ||
jobs: | ||
#call-tests: | ||
# uses: ./.github/workflows/tests.yml | ||
# secrets: inherit | ||
call-build: | ||
uses: ./.github/workflows/build.yml | ||
Check failure on line 11 in .github/workflows/staging.yml GitHub Actions / Run Tests on BranchInvalid workflow file
|
||
secrets: inherit | ||
#needs: call-tests | ||
call-publish: | ||
uses: ./.github/workflows/publish-v2.yml | ||
secrets: inherit | ||
needs: call-build | ||
with: | ||
environment: staging | ||
build_run_id: ${{ needs.call-build.outputs.build_run_id }} | ||