Skip to content

Commit

Permalink
Read from the correct directory in check-workflow-run
Browse files Browse the repository at this point in the history
download-artifact takes the path the contents gets extracted into,
even if the ZIP contains only a single file.
  • Loading branch information
gsnedders committed Sep 16, 2024
1 parent f2360ca commit 7844fb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-workflow-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: git-push-output
path: ${{ runner.temp }}/git-push-output.txt
path: ${{ runner.temp }}/git-push-output
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- id: check
run: |-
python3 tools/ci/check_for_updated_refs.py >> "$GITHUB_OUTPUT"
env:
GIT_PUSH_OUTPUT: ${{ runner.temp }}/git-push-output.txt
GIT_PUSH_OUTPUT: ${{ runner.temp }}/git-push-output/git-push-output.txt
REFS: ${{ inputs.check-refs }}

0 comments on commit 7844fb5

Please sign in to comment.