From 6613704b6eecadfdd625ee1d3843c5b61d862a61 Mon Sep 17 00:00:00 2001 From: Filipe Veloso Date: Tue, 20 Feb 2024 00:42:48 -0300 Subject: [PATCH] change upload an download artifact strategy --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b49864..a5f6969 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: ${{ matrix.target }} + name: image_cleaner-${{ matrix.target }} path: target/${{ matrix.target }}/release/ release: @@ -55,15 +55,13 @@ jobs: name: Release needs: build runs-on: ubuntu-latest - strategy: - matrix: - include: - - target: x86_64-unknown-linux-gnu - - target: armv7-unknown-linux-gnueabihf - - target: aarch64-unknown-linux-gnu steps: - name: Download Artifact uses: actions/download-artifact@v4 + with: + path: target + pattern: image_cleaner-* + merge-multiple: true - name: Display structure of downloaded files run: ls -R - name: Bump version and push tag