Target Workflow #40
Workflow file for this run
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: Target Workflow | |
on: | |
workflow_dispatch: {} | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
jq -n \ | |
--argjson run_id "${{ github.run_id }}" \ | |
--argjson run_attempt "${{ github.run_attempt }}" \ | |
'$ARGS.named' >build.json | |
jq <build.json | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: build.json | |
# Keep the workflow running to validate the action waits on job completion and not | |
# workflow completion. | |
post-build: | |
name: Post Build | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- run: sleep 60 |