From fb187293e1d5df58112a3b9ea0d4badb11abf942 Mon Sep 17 00:00:00 2001 From: Ken Sedgwick Date: Tue, 26 Nov 2024 13:28:58 -0800 Subject: [PATCH] update to github v4 artifact actions --- .github/workflows/rust.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e8ce744..2ff546b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -105,7 +105,7 @@ jobs: # run: ./trunk build packages: - name: Generate Packages + name: Build Packages runs-on: ubuntu-latest steps: - name: Checkout Code @@ -128,10 +128,14 @@ jobs: cargo generate-rpm cargo deb - - name: Upload Packages - uses: actions/upload-artifact@v3 + - name: Upload RPM Package + uses: actions/upload-artifact@v4 with: - name: notedeck-packages - path: | - target/generate-rpm/*.rpm - target/debian/*.deb + name: notedeck-rpm + path: target/generate-rpm/*.rpm + + - name: Upload Debian Package + uses: actions/upload-artifact@v4 + with: + name: notedeck-deb + path: target/debian/*.deb