diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4f479b4..113d2f1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -100,7 +100,7 @@ jobs: - name: Archive artifact uses: actions/upload-artifact@v4 with: - name: result + name: result-${{ matrix.TARGET }} path: | ./artifacts @@ -113,7 +113,37 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: result + name: result-x86_64-linux-gnu + path: ./artifacts + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: result-x86_64-linux-musl + path: ./artifacts + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: result-aarch64-linux-gnu + path: ./artifacts + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: result-aarch64-linux-musl + path: ./artifacts + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: result-arm-linux-gnueabihf + path: ./artifacts + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: result-arm-linux-musl + path: ./artifacts + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: result-x86_64-apple-darwin path: ./artifacts - name: List run: find ./artifacts