From 2ff88486d065302ef8ac8a980e0278371c20411e Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Sat, 18 Jun 2022 15:39:13 +0300 Subject: [PATCH] Clarify download action and why `name: artifact` is required https://github.com/pypa/cibuildwheel/pull/1135#pullrequestreview-1007698747 --- examples/github-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/github-deploy.yml b/examples/github-deploy.yml index e5929fc98..b77af8306 100644 --- a/examples/github-deploy.yml +++ b/examples/github-deploy.yml @@ -51,6 +51,8 @@ jobs: steps: - uses: actions/download-artifact@v3 with: + # unpacks default artifact into dist/ + # if `name: artifact` is ommitted, the action will create extra parent dir name: artifact path: dist