From 136118451ba8ca5292485ed4e3dc9a9d46ed1785 Mon Sep 17 00:00:00 2001 From: diligentis <97410946+diligentis@users.noreply.github.com> Date: Wed, 14 Sep 2022 10:48:14 -0400 Subject: [PATCH] Logging into GHCR in releaser action (#72) --- .github/workflows/releaser.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml index 0ea3336..cc8da68 100644 --- a/.github/workflows/releaser.yml +++ b/.github/workflows/releaser.yml @@ -19,6 +19,11 @@ jobs: with: fetch-depth: 0 - run: git fetch --force --tags + - uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-go@v3 with: go-version-file: ./go.mod