Skip to content

fix: array values are not converted to their field type #17

fix: array values are not converted to their field type

fix: array values are not converted to their field type #17

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
# the workflow can contain other jobs, such as linting, testing, etc.
release:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18.x' ]
steps:
# run git checkout
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# setup go
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
# run goreleaser
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
distribution: goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}