Skip to content

Commit

Permalink
ci: Update upload-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddiM8 committed Oct 3, 2024
1 parent 886f211 commit c74d7d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: |
cargo build --release --verbose
cp target/release/kalker target/release/kalker-linux
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: binaries
path: target/release/kalker-linux
Expand All @@ -100,7 +100,7 @@ jobs:
run: |
cargo build --release --verbose
zip -r kalker-macOS.zip target/release/kalker
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: binaries
path: kalker-macOS.zip
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
cd cli
cargo wix --no-build --nocapture
mv target/wix/*.msi target/wix/kalker-windows.msi
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: binaries
path: cli/target/wix/kalker-windows.msi
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
env:
BUILD_TOOLS_VERSION: ${{ env.BUILD_TOOL_VERSION }}
- run: mv $(ls -Art android/app/build/outputs/apk/release/*.apk | tail -n 1) ../kalker-android.apk
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: binaries
path: kalker-android.apk
Expand Down

0 comments on commit c74d7d5

Please sign in to comment.