Skip to content

Commit

Permalink
Release v0.2.6 (#108)
Browse files Browse the repository at this point in the history
* Push all platforms at once

* Bump versions to v0.2.6

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
davidcollom and github-actions[bot] authored Jul 17, 2023
1 parent fc6374b commit a9325c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,6 @@ jobs:

docker-release:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
- linux/arm/v7
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
Expand All @@ -130,7 +123,7 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platforms: ${{ matrix.platform }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: ${{ startsWith(github.ref, 'refs/tags/') }}
pull: true
tags: quay.io/jetstack/version-checker:${{github.ref_name}}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ verify: test build ## tests and builds version-checker

image: ## build docker image
GOARCH=$(ARCH) GOOS=linux CGO_ENABLED=0 go build -o ./bin/version-checker-linux ./cmd/.
docker build -t quay.io/jetstack/version-checker:v0.2.5 .
docker build -t quay.io/jetstack/version-checker:v0.2.6 .

clean: ## clean up created files
rm -rf \
Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/version-checker/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
appVersion: "v0.2.5"
version: "v0.2.5"
appVersion: "v0.2.6"
version: "v0.2.6"
description: A Helm chart for version-checker
home: https://github.com/jetstack/version-checker
name: version-checker
Expand Down
2 changes: 1 addition & 1 deletion deploy/yaml/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
spec:
serviceAccountName: version-checker
containers:
- image: quay.io/jetstack/version-checker:v0.2.5
- image: quay.io/jetstack/version-checker:v0.2.6
imagePullPolicy: Always
ports:
- containerPort: 8080
Expand Down

0 comments on commit a9325c7

Please sign in to comment.