fix: change root command back to "gencli" (#5) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GoReleaser | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-tag: | |
name: Creating tag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Creating Changelog and Release | |
id: changelog | |
uses: TriPSs/conventional-changelog-action@v5 | |
with: | |
github-token: ${{ secrets.PA_TOKEN }} | |
output-file: "false" | |
skip-commit: "true" | |
outputs: | |
tag: ${{ steps.changelog.outputs.tag }} | |
goreleasers: | |
name: GoReleaser | |
runs-on: ubuntu-latest | |
needs: create-tag | |
# only run if the tag is not empty | |
if: ${{ needs.create-tag.outputs.tag != '' }} | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |