Skip to content

feat: increment version to 0.0.16; enhance GROUP BY handling in SQL t… #7

feat: increment version to 0.0.16; enhance GROUP BY handling in SQL t…

feat: increment version to 0.0.16; enhance GROUP BY handling in SQL t… #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>=1.21.0'
- name: Test
run: go test ./internal/converter/...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}