From f5fc51dab2a4913ef79b248d20db0126c627be50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Nagygy=C3=B6rgy?= Date: Wed, 11 Oct 2023 13:19:51 +0200 Subject: [PATCH] fix: ci add missing go cmd --- .github/workflows/builder.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml index 3ee1165..edb20b0 100644 --- a/.github/workflows/builder.yaml +++ b/.github/workflows/builder.yaml @@ -46,7 +46,7 @@ jobs: packages: write contents: read container: - image: ghcr.io/dyrector-io/dyrectorio/builder-images/nodejs:1 + image: ghcr.io/dyrector-io/dyrectorio/builder-images/golang:2 defaults: run: working-directory: ${{ env.AGENT_WORKING_DIRECTORY }} @@ -83,3 +83,8 @@ jobs: # TODO: Env for version - name: Push agent image to GHCR Registry run: docker image push ${GITHUB_REGISTRY}/${AGENT_IMAGE_NAME}:latest + - name: Save Golang caches + uses: actions/cache/save@v3 + with: + path: /go + key: ${{ runner.os }}-golang-${{ hashFiles('go.sum') }}