diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03d655908..1d28e72cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -127,3 +127,27 @@ jobs: - name: Build Docker image run: make image-wsc + + build_privnet_image_ubuntu: + needs: build_cli_ubuntu + name: Build privnet Docker image (Ubuntu) + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + with: + ref: ${{ github.event.inputs.ref }} + fetch-depth: 0 + + # For proper `deps` make target execution. + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.18 + + # For information purposes. + - name: Print Docker version + run: docker --version + + - name: Build privnet Docker image + run: make env_image