File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 19
19
with :
20
20
fetch-depth : 0
21
21
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
+
22
35
- name : Setup go
23
36
uses : actions/setup-go@v5
24
37
with :
30
43
- name : Release via goreleaser
31
44
uses : goreleaser/goreleaser-action@v5
32
45
with :
33
- args : release --rm-dist
46
+ args : release --clean
34
47
env :
35
48
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ dockers:
87
87
- ' --pull'
88
88
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
89
89
- ' --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. '
91
91
- ' --label=org.opencontainers.image.source={{.GitURL}}'
92
92
- ' --label=org.opencontainers.image.url={{.GitURL}}'
93
93
- ' --label=org.opencontainers.image.documentation={{.GitURL}}'
Original file line number Diff line number Diff line change
1
+ # syntax=docker/dockerfile:1.4
2
+ FROM alpine:3
3
+
4
+ COPY helm-changelog /
5
+
6
+ CMD ["/helm-changelog" ]
You can’t perform that action at this time.
0 commit comments