From 89fd51d5b59d3f312881e987e1fdb5de3f6cf909 Mon Sep 17 00:00:00 2001 From: Maxence Maireaux Date: Wed, 7 Jun 2023 10:47:19 +0200 Subject: [PATCH] ci: clear useless step --- .github/workflows/release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4604c579a..4ad61d25d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,10 +34,7 @@ jobs: GoReleaser: name: GoReleaser - strategy: - matrix: - os: [ ubuntu-latest, macos-latest ] - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest env: DOCKER_CLI_EXPERIMENTAL: "enabled" needs: @@ -54,6 +51,12 @@ jobs: with: go-version-file: 'go.mod' cache: true + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: "NumaryBot" + password: ${{ secrets.NUMARY_GITHUB_TOKEN }} - name: Run GoReleaser env: GITHUB_TOKEN: ${{ secrets.NUMARY_GITHUB_TOKEN }}