Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Merge pull request #17 from workos/at-fga-schema-commands #11

Merge pull request #17 from workos/at-fga-schema-commands

Merge pull request #17 from workos/at-fga-schema-commands #11

Workflow file for this run

name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup Go Env
uses: actions/setup-go@v5
with:
go-version: "^1.23.0"
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Release with GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.BREW_REPO_GH_TOKEN }}