From 7ffe2fbf7a86136991f4bdaf5332fe7d6c1adea0 Mon Sep 17 00:00:00 2001 From: graelo Date: Tue, 2 Jun 2020 20:29:13 +0200 Subject: [PATCH] build(github-actions): update workflow --- .github/workflows/rust.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7eb1343..586e578 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,10 +12,10 @@ jobs: - name: Build run: cargo build --release - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v2 with: - name: thumbs-macos.zip - path: ./target/release/thumbs + name: copyrat-macos.zip + path: ./target/release/*copyrat build-linux: runs-on: ubuntu-latest @@ -31,7 +31,7 @@ jobs: - name: Build run: cargo build --release - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v2 with: - name: thumbs-linux.zip - path: ./target/release/thumbs + name: copyrat-linux.zip + path: ./target/release/*copyrat