From eb2a26d2825c448cde7339eff093d04e10325d11 Mon Sep 17 00:00:00 2001 From: Jan Jones Date: Fri, 26 Sep 2025 22:05:00 +0200 Subject: [PATCH] docs: Correct unzip command path in `workflow_run` docs --- .../workflows-and-actions/events-that-trigger-workflows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md b/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md index d53075f2a147..12cb919673d9 100644 --- a/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md +++ b/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md @@ -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 %}