Skip to content

Commit bf7599b

Browse files
committed
fix: make release pipeline login to ghcr before pushing
1 parent 5e16008 commit bf7599b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ jobs:
1717
- name: Checkout source code
1818
uses: actions/checkout@v3
1919

20+
- name: Login to GitHub Container Registry
21+
uses: docker/login-action@v2
22+
with:
23+
registry: ghcr.io
24+
username: ${{ github.actor }}
25+
password: ${{ secrets.GITHUB_TOKEN }}
26+
2027
- name: Install Go
2128
if: success()
2229
uses: actions/setup-go@v4

0 commit comments

Comments
 (0)