forked from authzed/spicedb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Break out windows goreleaser config into its own file and build step,…
… as it needs to run on a windows machine
- Loading branch information
1 parent
ba76931
commit 15a4537
Showing
4 changed files
with
90 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
git: | ||
tag_sort: "-version:creatordate" | ||
prerelease_suffix: "-" | ||
before: | ||
hooks: | ||
- "go run mage.go gen:completions" | ||
builds: | ||
- main: "./cmd/spicedb" | ||
env: | ||
- "CGO_ENABLED=0" | ||
goos: | ||
- "windows" | ||
goarch: | ||
- "amd64" | ||
- "arm64" | ||
mod_timestamp: "{{ .CommitTimestamp }}" | ||
ldflags: | ||
- "-s -w" | ||
- "-X github.com/jzelinskie/cobrautil/v2.Version=v{{ .Version }}" | ||
archives: | ||
- files: | ||
- "README.md" | ||
- "LICENSE" | ||
- "completions/*" | ||
format_overrides: | ||
- goos: "windows" | ||
format: "zip" | ||
chocolateys: | ||
- name: "spicedb" | ||
package_source_url: "https://github.com/authzed/spicedb" | ||
owners: "AuthZed, Inc" | ||
title: "SpiceDB" | ||
project_url: "https://github.com/authzed/spicedb" | ||
use: "archive" | ||
url_template: "https://github.com/authzed/spicedb/releases/download/{{ .Tag }}/{{ .ArtifactName }}" | ||
icon_url: "https://authzed.com/favicon.svg" | ||
copyright: "2024 AuthZed, Inc" | ||
license_url: "https://github.com/authzed/spicedb/blob/main/LICENSE" | ||
project_source_url: "https://github.com/authzed/spicedb" | ||
docs_url: "https://authzed.com/docs" | ||
bug_tracker_url: "https://github.com/authzed/spicedb/issues" | ||
tags: "spicedb zanzibar authz rebac rbac abac fga" | ||
summary: "SpiceDB is a graph database purpose-built for storing and evaluating access control data." | ||
description: | | ||
Open Source, Google Zanzibar-inspired permissions database to enable fine-grained access control for customer applications | ||
release_notes: "https://github.com/authzed/spicedb/releases/tag/v{{ .Version }}" | ||
api_key: "{{ .Env.CHOCOLATEY_API_KEY }}" | ||
source_repo: "https://push.chocolatey.org/" | ||
checksum: | ||
name_template: "checksums.txt" | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-next" | ||
changelog: | ||
use: "github-native" | ||
sort: "asc" | ||
nightly: | ||
name_template: "{{ incpatch .Version }}-{{ .ShortCommit }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters