mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-22 18:06:11 +00:00
* fix(deps): update all non-major dependencies * chore: bump go to v1.24 Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: build and lint Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: goreleaser Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: goveralls Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: remove deprecatad linter Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: goveralls latest version install Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: linter Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: bump ci linter to v1.64.7 Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: bump ci linter to v1.64.7 and fix issues Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> * fix: remove version from linter yaml Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> --------- Signed-off-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Manuel Vogel <8409778+mavogel@users.noreply.github.com>
39 lines
828 B
YAML
39 lines
828 B
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
env:
|
|
GO_VERSION: "1.24"
|
|
DOCKER_REGISTRY: "quay.io"
|
|
|
|
jobs:
|
|
goreleaser:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Login to Docker Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.DOCKER_REGISTRY }}
|
|
username: ${{ secrets.QUAY_IO_USER }}
|
|
password: ${{ secrets.QUAY_IO_TOKEN }}
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v4
|
|
with:
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}
|