1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Correct unzip command path in workflow_run docs (#40568)

Co-authored-by: Sharra-writes <sharra-writes@github.com>
This commit is contained in:
Jan Jones
2025-09-27 00:37:18 +02:00
committed by GitHub
parent cd1a88d32c
commit 095915988f

View File

@@ -1287,7 +1287,7 @@ jobs:
fs.writeFileSync(path.join(temp, 'pr_number.zip'), Buffer.from(download.data));
- name: 'Unzip artifact'
run: unzip pr_number.zip -d "{% raw %}${{ runner.temp }}{% endraw %}/artifacts"
run: unzip "{% raw %}${{ runner.temp }}{% endraw %}/artifacts/pr_number.zip" -d "{% raw %}${{ runner.temp }}{% endraw %}/artifacts"
- name: 'Comment on PR'
uses: {% data reusables.actions.action-github-script %}