scp-action/.github/workflows/goreleaser.yml
appleboy 7179e72a3f
ci: update GitHub workflows to use latest action versions
- Update actions/setup-go to v6 in the goreleaser workflow
- Update tj-actions/changed-files to v47 in stable and testing workflows

Signed-off-by: appleboy <appleboy.tw@gmail.com>
2025-09-16 22:58:49 +08:00

34 lines
648 B
YAML

name: Goreleaser
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v6
with:
go-version: "^1"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}