diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index ebefd93..87c0696 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -23,6 +23,13 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - name: Log in to the Container registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Set up Go uses: actions/setup-go@v4 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d0ae47..f313a2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,6 @@ jobs: uses: golangci/golangci-lint-action@v3 with: version: v1.54 - args: --timeout=5m --out-format=github-actions + args: --timeout=5m --out-format=github-actions --fast