Skip to content

Commit

Permalink
use wildcard name for download action
Browse files Browse the repository at this point in the history
  • Loading branch information
DanEngelbrecht committed Mar 3, 2024
1 parent a316dfb commit 5bbfbc3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: linux-x64-*
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -81,6 +82,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: darwin-x64-*
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -122,6 +124,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: win32-*
path: build/artifacts
- name: build dist
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: linux-*
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -115,6 +116,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: darwin-*
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -173,6 +175,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: win32-*
path: build/artifacts
- name: build dist
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: linux-*
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -125,6 +126,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: darwin-*
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -183,6 +185,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: win32-*
path: build/artifacts
- name: build dist
run: |
Expand Down

0 comments on commit 5bbfbc3

Please sign in to comment.