Correct unzip command path in workflow_run docs (#40568)
Co-authored-by: Sharra-writes <sharra-writes@github.com>
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user