diff --git a/.github/workflows/continous-delivery.yml b/.github/workflows/continous-delivery.yml index 043e6ae..726734e 100644 --- a/.github/workflows/continous-delivery.yml +++ b/.github/workflows/continous-delivery.yml @@ -4,7 +4,7 @@ name: "Continous Delivery Workflow" workflow_call: env: - GO_VERSION: "1.18.0" + GO_VERSION: "1.19.0" jobs: release-docker: @@ -42,14 +42,14 @@ jobs: tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ github.sha }},ghcr.io/${{ github.repository }}:${{ github.ref_name }} # public registry builds - - name: Build and push - uses: docker/build-push-action@v3 - if: ${{!github.event.repository.private}} - with: - context: . - build-args: GO_VERSION=${{env.GO_VERSION}} - push: true - tags: ${{ github.repository }}:latest,${{ github.repository }}:${{ github.sha }},${{ github.repository }}:${{ github.ref_name }} + #- name: Build and push + # uses: docker/build-push-action@v3 + # if: ${{!github.event.repository.private}} + # with: + # context: . + # build-args: GO_VERSION=${{env.GO_VERSION}} + # push: true + # tags: ${{ github.repository }}:latest,${{ github.repository }}:${{ github.sha }},${{ github.repository }}:${{ github.ref_name }} release-binary: diff --git a/Dockerfile b/Dockerfile index 9329131..f2fdb41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # FILE IS AUTOMATICALLY MANAGED BY github.com/vegaprotocol/terraform//github -ARG GO_VERSION=1.18.0 +ARG GO_VERSION=1.19.0 ARG ALPINE_VERSION=3.16 FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder RUN mkdir /build