We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef44faf commit ff47414Copy full SHA for ff47414
1 file changed
.github/workflows/release.yaml
@@ -10,7 +10,7 @@ on:
10
11
permissions:
12
contents: write
13
- # packages: write
+ packages: write
14
# issues: write
15
# id-token: write
16
@@ -28,6 +28,13 @@ jobs:
28
go-version: stable
29
- name: Set up Docker Buildx
30
uses: docker/setup-buildx-action@v3
31
+ - name: Login to GitHub Container Registry
32
+ uses: docker/login-action@v3
33
+ with:
34
+ registry: ghcr.io
35
+ username: ${{ github.actor }}
36
+ password: ${{ secrets.GITHUB_TOKEN }}
37
+
38
# More assembly might be required: Docker logins, GPG, etc.
39
# It all depends on your needs.
40
- name: Run GoReleaser
0 commit comments