Skip to content

Commit 97f5494

Browse files
committed
Use custom artifact download for deployment
GitHub's own download action does not work across workflows: actions/download-artifact#3
1 parent fd25857 commit 97f5494

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/deploy-latest.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,14 @@ jobs:
1212
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/download-artifact@v3
15+
# https://github.com/actions/download-artifact/issues/3
16+
- name: Download artifact
17+
id: download-artifact
18+
uses: dawidd6/action-download-artifact@v2
1619
with:
20+
workflow: basic.yml
1721
name: Distribution
22+
workflow_conclusion: success
23+
branch: master
1824
# TODO: let's just validate that this is triggered as expected first
1925
- run: ls -R

0 commit comments

Comments
 (0)