diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d5af3bfa5..e3a23a7df6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,32 +58,17 @@ jobs: env: RUST_BACKTRACE: full - # - name: Setup Docker BuildKit (buildx) - # if: matrix.just_variants == 'async_std' - # uses: docker/setup-buildx-action@v3 - - # - name: Login to Github Container Repo - # uses: docker/login-action@v3 - # if: github.event_name != 'pull_request' && matrix.just_variants == 'async_std' - # with: - # registry: ghcr.io - # username: ${{ github.repository_owner }} - # password: ${{ secrets.GITHUB_TOKEN }} - - # - name: Generate docker metadata (web-server) - # uses: docker/metadata-action@v5 - # if: matrix.just_variants == 'async_std' - # id: web-server - # with: - # images: ghcr.io/espressosystems/hotshot/web-server - - # - name: Build and push web-server docker - # uses: docker/build-push-action@v5 - # if: matrix.just_variants == 'async_std' - # with: - # context: ./ - # file: ./deploy/web-server.Dockerfile - # platforms: linux/amd64 - # push: ${{ github.event_name != 'pull_request' }} - # tags: ${{ steps.web-server.outputs.tags }} - # labels: ${{ steps.web-server.outputs.labels }} + - name: Upload Binaries + uses: actions/upload-artifact@v3 + with: + name: binaries-${{ matrix.just_variants }} + path: | + target/debug/examples/counter + target/debug/examples/libp2p-multi-validator + target/debug/examples/libp2p-orchestrator + target/debug/examples/libp2p-validator + target/debug/examples/multi-validator + target/debug/examples/multi-web-server + target/debug/examples/web-server + target/debug/examples/web-server-da-orchestrator + target/debug/examples/web-server-da-validator