Skip to content

Commit

Permalink
Updated actions/upload-artifact, actions/download-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicletz committed Sep 10, 2024
1 parent f8054b1 commit 4808c7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ jobs:
mkdir darwin_package_build
DIODE_BUILD_DST=darwin_package_build DIODE_BINARY_DIRECTORY=dist sh darwin_package.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ZIPNAME }}
path: dist
- name: Archive macos package production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: runner.os == 'macOS'
with:
name: ${{ runner.os }}
Expand All @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v3
- run: echo "ZIPNAME=`./deployment/zipname.sh`" >> $GITHUB_ENV
shell: bash
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: ${{ env.ZIPNAME }}
- run: |
Expand All @@ -101,12 +101,12 @@ jobs:
cd .github
bash ./build.sh
- name: "Archive pi-arm32 artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "diode_linux_arm.zip"
path: ${{ github.workspace }}/.github/diode_linux_arm.zip
- name: "Archive pi-arm64 artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "diode_linux_arm64.zip"
path: ${{ github.workspace }}/.github/diode_linux_arm64.zip

0 comments on commit 4808c7a

Please sign in to comment.