Skip to content

Commit 0959159

Browse files
Correct unzip command path in workflow_run docs (#40568)
Co-authored-by: Sharra-writes <[email protected]>
1 parent cd1a88d commit 0959159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ jobs:
12871287
fs.writeFileSync(path.join(temp, 'pr_number.zip'), Buffer.from(download.data));
12881288
12891289
- name: 'Unzip artifact'
1290-
run: unzip pr_number.zip -d "{% raw %}${{ runner.temp }}{% endraw %}/artifacts"
1290+
run: unzip "{% raw %}${{ runner.temp }}{% endraw %}/artifacts/pr_number.zip" -d "{% raw %}${{ runner.temp }}{% endraw %}/artifacts"
12911291
12921292
- name: 'Comment on PR'
12931293
uses: {% data reusables.actions.action-github-script %}

0 commit comments

Comments
 (0)