Skip to content

Commit

Permalink
chore: update upload-artifact action to v4 in release workflow
Browse files Browse the repository at this point in the history
fix: update argument for biliup binary in release workflow

chore: update download-artifact action to v4 in release workflow
  • Loading branch information
ForgQi committed Jan 26, 2025
1 parent d44e482 commit 1c3eb58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
with:
use-cross: ${{ matrix.cross }}
command: build
args: --release --locked --target ${{ matrix.target }} -p biliup
args: --release --locked --target ${{ matrix.target }} --bin biliup

- name: Strip release binary (linux and macos)
if: matrix.build == 'x86_64-linux' || matrix.build == 'x86_64-macos'
Expand All @@ -119,7 +119,7 @@ jobs:
cp "target/${{ matrix.target }}/release/$BIN_NAME" "dist/"
fi
- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v4
with:
name: bins-${{ matrix.build }}
path: dist
Expand All @@ -134,7 +134,7 @@ jobs:
with:
submodules: false

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
# with:
# path: dist
# - run: ls -al ./dist
Expand Down

0 comments on commit 1c3eb58

Please sign in to comment.