Files
actions-sync/.github/workflows/releases.yml
T
dependabot[bot] 6fcae0c426 Bump goreleaser/goreleaser-action
Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from f09f1a7bee7ae6b5153daf4e8c63cc8ce8c7e7d5 to d33b6f6aeabd7fed8bb3fbf32c4d890d29f48545.
- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)
- [Commits](https://github.com/goreleaser/goreleaser-action/compare/f09f1a7bee7ae6b5153daf4e8c63cc8ce8c7e7d5...d33b6f6aeabd7fed8bb3fbf32c4d890d29f48545)

---
updated-dependencies:
- dependency-name: goreleaser/goreleaser-action
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-24 20:20:30 +00:00

27 lines
628 B
YAML

name: goreleaser
on:
push:
tags:
- "v**"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
- name: Set CURRENT_TAG
run: echo "GORELEASER_CURRENT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@d33b6f6aeabd7fed8bb3fbf32c4d890d29f48545
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}