Skip to content

Commit 0ff2eb1

Browse files
committed
Fix 0.33.0 release by removing arm builds
1 parent a575332 commit 0ff2eb1

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
if: github.event.action != 'published'
1111
run: exit 78
1212
- uses: actions/checkout@master
13+
- name: Build docker image
14+
run: docker build -t yace --build-arg VERSION=${{ github.event.release.tag_name }} .
1315
- name: Log into docker
1416
env:
1517
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
@@ -19,16 +21,13 @@ jobs:
1921
- name: Release if tagged
2022
if: "!startswith(github.ref, 'refs/tags/v')"
2123
run: exit 78
22-
- name: Setup buildx
23-
uses: docker/setup-buildx-action@v1
24-
id: buildx
25-
with:
26-
install: true
27-
- name: Build and Publish docker image
28-
run: docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t ghcr.io/nerdswords/yet-another-cloudwatch-exporter:${{ github.event.release.tag_name }} --build-arg VERSION=${{github.event.release.tag_name}} --push .
24+
- name: Tag docker image
25+
run: docker tag yace ghcr.io/nerdswords/yet-another-cloudwatch-exporter:${{ github.event.release.tag_name }}
2926
- name: Build && release binaries
3027
uses: docker://goreleaser/goreleaser:v0.179.0
3128
env:
3229
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3330
with:
3431
args: release
32+
- name: Publish docker image
33+
run: docker push ghcr.io/nerdswords/yet-another-cloudwatch-exporter:${{ github.event.release.tag_name }}

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
# 0.33.1-alpha
2-
* Fix deployment pipeline (buildx)
3-
41
# 0.33.0-alpha
5-
* Publishing docker arm image and use buildx to build docker image (@jlamande)
62
* Add /healthz route which allows to deploy more secure with helm (aleslash)
3+
* Read DMS replication instance identifier from the DMS API (nhinds)
74

85
# 0.32.0-alpha
96
* [BREAKING] Fix the calculation of start and end times for GetMetricData (csquire)

0 commit comments

Comments
 (0)