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