From 6d6a08429e8d3bc3f704eacd35705d8c41b3aa9f Mon Sep 17 00:00:00 2001 From: David Mattia Date: Fri, 29 Mar 2024 20:36:40 +0000 Subject: [PATCH] push docker build to registry --- .github/workflows/container-build.yml | 2 +- Makefile | 2 +- README.md | 4 ++-- main.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index d23ab5bd..3c84a3aa 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -71,7 +71,7 @@ jobs: - name: Build the container image uses: docker/build-push-action@v5 with: - push: ${{ github.event.inputs.tag != '' || startsWith(github.event.push.ref, 'refs/tags/') }} + push: true builder: ${{ steps.buildx.outputs.name }} platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} diff --git a/Makefile b/Makefile index f132dcce..a1870da9 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.17.6 +VERSION=1.17.7 PATH_BUILD=build/ FILE_COMMAND=terragrunt-atlantis-config FILE_ARCH=$(shell go env GOOS)_$(shell go env GOARCH) diff --git a/README.md b/README.md index 7f886bf7..84725746 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Then, make sure `terragrunt-atlantis-config` is present on your Atlantis server. ```hcl variable "terragrunt_atlantis_config_version" { - default = "1.17.6" + default = "1.17.7" } build { @@ -191,7 +191,7 @@ You can install this tool locally to checkout what kinds of config it will gener Recommended: Install any version via go install: ```bash -go install github.com/transcend-io/terragrunt-atlantis-config@v1.17.6 +go install github.com/transcend-io/terragrunt-atlantis-config@v1.17.7 ``` This module officially supports golang versions v1.13, v1.14, v1.15, and v1.16, tested on CircleCI with each build diff --git a/main.go b/main.go index 1a0588f4..725840cc 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import "github.com/transcend-io/terragrunt-atlantis-config/cmd" // This variable is set at build time using -ldflags parameters. // But we still set a default here for those using plain `go get` downloads // For more info, see: http://stackoverflow.com/a/11355611/483528 -var VERSION string = "1.17.6" +var VERSION string = "1.17.7" func main() { cmd.Execute(VERSION)