Skip to content

Commit

Permalink
ci: use actions/download-artifact@v4
Browse files Browse the repository at this point in the history
download-artifact@v3 does not download artifacts uploaded with upload-artifact@v4
  • Loading branch information
link2xt committed Feb 15, 2024
1 parent cdcacf2 commit 2dd87b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
- uses: actions/checkout@v3

- name: Download libdeltachat.a
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.os }}-libdeltachat.a
path: target/debug
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
run: pip install tox

- name: Download deltachat-rpc-server
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.os }}-deltachat-rpc-server
path: target/debug
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deltachat-rpc-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,31 +108,31 @@ jobs:
- uses: actions/checkout@v3

- name: Download Linux binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: linux
path: dist/

- name: Download win32 binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: deltachat-rpc-server-win32.exe
path: deltachat-rpc-server-win32.exe.d

- name: Download win64 binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: deltachat-rpc-server-win64.exe
path: deltachat-rpc-server-win64.exe.d

- name: Download macOS binary for x86_64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: deltachat-rpc-server-x86_64-macos
path: deltachat-rpc-server-x86_64-macos.d

- name: Download macOS binary for aarch64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: deltachat-rpc-server-aarch64-macos
path: deltachat-rpc-server-aarch64-macos.d
Expand Down

0 comments on commit 2dd87b6

Please sign in to comment.