Skip to content

Merge pull request #11 from foomo/query-types #7

Merge pull request #11 from foomo/query-types

Merge pull request #11 from foomo/query-types #7

Workflow file for this run

name: Release Tag
on:
push:
tags:
- v*.*.*
workflow_dispatch:
env:
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
check-latest: true
go-version-file: 'go.mod'
- uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}