Skip to content

chore(ci): update go releaser template (#17) #17

chore(ci): update go releaser template (#17)

chore(ci): update go releaser template (#17) #17

Workflow file for this run

name: Release
on:
push:
branches: [main]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "🔧 Setup Go"
uses: actions/setup-go@v5
with:
go-version: '1.25'
cache: true
- name: "📦 Download dependencies"
run: go mod download
- name: "🔍 Run all checks"
run: make check
- name: "🚀 Semantic Release"
uses: go-semantic-release/action@v1
with:
hooks: goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}