From 9880782742f3c0808ea9f461aa2aa87058f988f9 Mon Sep 17 00:00:00 2001 From: Filipe Veloso Date: Mon, 19 Feb 2024 21:20:13 -0300 Subject: [PATCH] update download parh --- .github/workflows/release.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f01bb47..4ab8a9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,19 +8,13 @@ on: jobs: 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: - uses: actions/checkout@v4 - name: Download Artifact uses: actions/download-artifact@v4 with: - name: ${{ matrix.target }} - path: target/${{ matrix.target }} + path: target - name: Display structure of downloaded files run: ls -R target - name: Bump version and push tag