Skip to content

Commit

Permalink
Updated old upload/download actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nozomi-slibero committed Sep 4, 2024
1 parent c6247f8 commit 869c0e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ jobs:
needs: [build-linux, build-freebsd]
steps:
- name: Download artifact - FreeBSD x86-64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: n2os_smb_client.bsd_x86-64
path: bin/
- name: Download artifact - FreeBSD arm64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: n2os_smb_client.bsd_arm64
path: bin/
- name: Download artifact - Linux x86-64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: n2os_smb_client.linux_x86-64
path: bin/
- name: Download artifact - Linux arm64
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: n2os_smb_client.linux_arm64
path: bin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sudo pkg install -y cmake
./build.bsd.sh
- name: Store executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "n2os_smb_client.bsd_${{ matrix.arch }}"
path: bin/n2os_smb_client.bsd*
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
docker run --platform ${{ matrix.arch.platform }} --rm --volume "${PWD}/bin:/artifacts" ${{ env.IMG_TAG }} cp /usr/src/n2os-smb-client/bin/${{ matrix.arch.bin_name }} /artifacts
- name: Store executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch.artifact }}
path: bin/${{ matrix.arch.bin_name }}

0 comments on commit 869c0e9

Please sign in to comment.