Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Merge pull request #102 from zilliztech/feature_support_partition #30

Merge pull request #102 from zilliztech/feature_support_partition

Merge pull request #102 from zilliztech/feature_support_partition #30

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: '1.22'
cache: true
- uses: goreleaser/goreleaser-action@v4
with:
# either 'goreleaser' (default) or 'goreleaser-pro':
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}