Skip to content

Commit

Permalink
bumpt all download to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DanEngelbrecht committed Mar 3, 2024
1 parent 5bbfbc3 commit 167056e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 18 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: linux-x64-*
pattern: linux-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -80,9 +81,10 @@ jobs:
arch: [arm64, x64]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: darwin-x64-*
pattern: darwin-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -122,9 +124,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: win32-*
pattern: win32-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: linux-*
pattern: linux-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -114,9 +115,10 @@ jobs:
arch: [arm64, x64]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: darwin-*
pattern: darwin-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -173,9 +175,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: win32-*
pattern: win32-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: linux-*
pattern: linux-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -124,9 +125,10 @@ jobs:
arch: [x64, arm64]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: darwin-*
pattern: darwin-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -183,9 +185,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: win32-*
pattern: win32-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down

0 comments on commit 167056e

Please sign in to comment.