Skip to content

Commit

Permalink
chore(ci): fix deprecation (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mloiseleur committed Apr 19, 2024
1 parent 164f235 commit 45decdd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
with:
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Setup go
uses: actions/setup-go@v5
with:
Expand All @@ -30,6 +36,6 @@ jobs:
- name: Release via goreleaser
uses: goreleaser/goreleaser-action@v5
with:
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ dockers:
- '--pull'
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
- '--label=org.opencontainers.image.title={{.ProjectName}}'
- '--label=org.opencontainers.image.description=Myrmica Bibikoffi - Closes stale issues'
- '--label=org.opencontainers.image.description=Create changelogs for Helm Charts, based on git history.'
- '--label=org.opencontainers.image.source={{.GitURL}}'
- '--label=org.opencontainers.image.url={{.GitURL}}'
- '--label=org.opencontainers.image.documentation={{.GitURL}}'
Expand Down
6 changes: 6 additions & 0 deletions buildx.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# syntax=docker/dockerfile:1.4
FROM alpine:3

COPY helm-changelog /

CMD ["/helm-changelog"]

0 comments on commit 45decdd

Please sign in to comment.