Skip to content

feat(cli): add --author/--name flags and reorder args #8

feat(cli): add --author/--name flags and reorder args

feat(cli): add --author/--name flags and reorder args #8

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Build binaries
run: |
make release
ls -l bin/
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bin/*
generate_release_notes: true
draft: false
prerelease: false