Skip to content

Commit a13793d

Browse files
committed
feat: support for variable only deployments
1 parent 849031d commit a13793d

File tree

3 files changed

+137
-53
lines changed

3 files changed

+137
-53
lines changed

.github/workflows/docker-image.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
branches:
1212
- 'main'
1313
- 'release/*'
14+
- 'k8s-collector'
1415

1516
jobs:
1617
docker:

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ build: fmt vet
3030
docker-build:
3131
DOCKER_BUILDKIT=1 docker build --pull --build-arg GO_VER=${GO_VER} --build-arg VERSION=${VERSION} --build-arg BUILD=${BUILD} --rm -f Dockerfile -t lagoon/build-deploy-image:local .
3232
docker run --entrypoint /bin/bash lagoon/build-deploy-image:local -c 'build-deploy-tool version'
33+
34+
tag-and-push:
35+
docker tag lagoon/build-deploy-image:local uselagoon/build-deploy-image:${VERSION}
36+
docker push uselagoon/build-deploy-image:${VERSION}

0 commit comments

Comments
 (0)