From 264e43114882e4fb1dd8d409ff9c06ba5b719f52 Mon Sep 17 00:00:00 2001 From: Joe Polny Date: Wed, 15 May 2024 11:34:20 -0400 Subject: [PATCH] chore: fix resolver image workflow --- .github/workflows/resolver_image.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/resolver_image.yml b/.github/workflows/resolver_image.yml index 927b129..33d66ad 100644 --- a/.github/workflows/resolver_image.yml +++ b/.github/workflows/resolver_image.yml @@ -38,6 +38,16 @@ jobs: uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + # Go + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: 1.21.x + + - name: Build + run: make build + # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages. # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository. # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.