We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637a65e commit 0ca4a72Copy full SHA for 0ca4a72
2 files changed
.github/workflows/release.yml
@@ -30,6 +30,13 @@ jobs:
30
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
31
restore-keys: |
32
${{ runner.os }}-go-
33
+ -
34
+ name: Login to GitHub Container Registry
35
+ uses: docker/login-action@v2
36
+ with:
37
+ registry: ghcr.io
38
+ username: ${{ github.actor }}
39
+ password: ${{ secrets.GITHUB_TOKEN }}
40
-
41
name: Run GoReleaser
42
uses: goreleaser/goreleaser-action@v2
.goreleaser.yaml
@@ -31,6 +31,6 @@ dockers:
id: gitlab-code-quality
image_templates:
- - "ghcr.io/loq9/gitlab-code-quality:{{ .Tag }}"
- - "ghcr.io/loq9/gitlab-code-quality:latest"
+ - "ghcr.io/loq9/{{ .ProjectName }}:{{ .Tag }}"
+ - "ghcr.io/loq9/{{ .ProjectName }}:latest"
dockerfile: "Dockerfile.minimal"
0 commit comments