diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c4a728..5d1512f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: - nick-test jobs: - build-native-artifacts: + build-artifacts: name: Build node bindings strategy: matrix: @@ -25,4 +25,21 @@ jobs: - name: Build Native Artifacts run: ./scripts/release.sh - shell: bash \ No newline at end of file + shell: bash + + - uses: actions/upload-artifact@v4 + with: + name: build-artifacts-${{ github.sha }}-${{ matrix.os }} + path: packages/**/*.node + retention-days: 1 + download-artifacts: + needs: build-artifacts + runs-on: ubuntu-latest + steps: + - name: Download All Artifacts + uses: actions/download-artifact@v4 + with: + path: my-artifact + pattern: build-artifacts-${{ github.sha }}-* + merge-multiple: true + - run: ls -R my-artifact