Skip to content

Commit

Permalink
ci: update docker/goreleaser action versions for release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhop committed Mar 5, 2024
1 parent 121dffd commit ca4febd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ jobs:
go mod tidy
go test -v ./...
- name: Docker Login (ghcr.io)
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TAGGER_GORELEASER_DEPLOY_PAT }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TAGGER_GORELEASER_DEPLOY_PAT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ca4febd

Please sign in to comment.