Skip to content

make project cmds more consitent #144

make project cmds more consitent

make project cmds more consitent #144

Workflow file for this run

name: release
on:
push:
branches:
- "!*"
tags:
- "v*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: 1.22.x
- run: go test ./...
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.APIGEAR_REPOS }}