Skip to content

Commit 13013e4

Browse files
committed
chore(ci): fix deprecation (#8)
1 parent 164f235 commit 13013e4

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.github/workflows/release.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121

22+
- name: Login to GitHub Container Registry
23+
uses: docker/login-action@v3
24+
with:
25+
registry: ghcr.io
26+
username: ${{ github.actor }}
27+
password: ${{ secrets.GITHUB_TOKEN }}
28+
29+
- name: Set up QEMU
30+
uses: docker/setup-qemu-action@v3
31+
32+
- name: Set up Docker Buildx
33+
uses: docker/setup-buildx-action@v3
34+
2235
- name: Setup go
2336
uses: actions/setup-go@v5
2437
with:
@@ -30,6 +43,6 @@ jobs:
3043
- name: Release via goreleaser
3144
uses: goreleaser/goreleaser-action@v5
3245
with:
33-
args: release --rm-dist
46+
args: release --clean
3447
env:
3548
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ dockers:
8787
- '--pull'
8888
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
8989
- '--label=org.opencontainers.image.title={{.ProjectName}}'
90-
- '--label=org.opencontainers.image.description=Myrmica Bibikoffi - Closes stale issues'
90+
- '--label=org.opencontainers.image.description=Create changelogs for Helm Charts, based on git history.'
9191
- '--label=org.opencontainers.image.source={{.GitURL}}'
9292
- '--label=org.opencontainers.image.url={{.GitURL}}'
9393
- '--label=org.opencontainers.image.documentation={{.GitURL}}'

buildx.Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# syntax=docker/dockerfile:1.4
2+
FROM alpine:3
3+
4+
COPY helm-changelog /
5+
6+
CMD ["/helm-changelog"]

0 commit comments

Comments
 (0)