forked from supabase/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
102 lines (99 loc) · 3.57 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
project_name: supabase
builds:
- id: supabase
binary: supabase
ldflags:
- -X github.com/supabase/cli/internal/utils.Version={{.Version}}
targets:
- darwin_amd64
- darwin_arm64
- linux_amd64
- linux_arm64
- windows_amd64
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
release:
draft: true
replace_existing_draft: true
prerelease: auto
changelog:
use: github
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "Bug fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Others
order: 999
brews:
- tap:
owner: supabase
name: homebrew-tap
token: "{{ .Env.BREWTAP_TOKEN }}"
commit_author:
name: Bobbie Soedirgo
email: [email protected]
url_template: "https://github.com/supabase/cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: https://supabase.com
description: Supabase CLI
license: MIT
install: |
bin.install "supabase"
(bash_completion/"supabase").write `#{bin}/supabase completion bash`
(fish_completion/"supabase.fish").write `#{bin}/supabase completion fish`
(zsh_completion/"_supabase").write `#{bin}/supabase completion zsh`
scoop:
bucket:
owner: supabase
name: scoop-bucket
token: "{{ .Env.SCOOP_TOKEN }}"
commit_author:
name: Bobbie Soedirgo
email: [email protected]
url_template: "https://github.com/supabase/cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: https://supabase.com
description: Supabase CLI
license: MIT
chocolateys:
- owners: Supabase
title: Supabase CLI
summary: The open source Firebase alternative.
authors: Supabase CLI
tags: "Supabase CLI firebase postgres serverless BaaS"
url_template: "https://github.com/supabase/cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
project_url: https://supabase.com
icon_url: https://avatars.githubusercontent.com/u/54469796
license_url: https://github.com/supabase/cli/blob/main/LICENSE
package_source_url: https://github.com/supabase/cli
project_source_url: https://github.com/supabase/cli
docs_url: https://supabase.com/docs/reference/cli
bug_tracker_url: https://github.com/supabase/cli/issues
description: |
[![Coverage Status](https://coveralls.io/repos/github/supabase/cli/badge.svg?branch=main)](https://coveralls.io/github/supabase/cli?branch=main)
[Supabase](https://supabase.io) is an open source Firebase alternative. We're building the features of Firebase using enterprise-grade open source tools.
This repository contains all the functionality for Supabase CLI.
- [x] Running Supabase locally
- [x] Managing database migrations
- [x] Pushing your local changes to production
- [x] Create and Deploy Supabase Functions
- [ ] Manage your Supabase Account
- [x] Manage your Supabase Projects
- [x] Generating types directly from your database schema
- [ ] Generating API and validation schemas from your database
release_notes: "https://github.com/supabase/cli/releases/tag/v{{ .Version }}"
api_key: "{{ .Env.CHOCOLATEY_API_KEY }}"
source_repo: "https://push.chocolatey.org/"
skip_publish: true
nfpms:
- vendor: Supabase
description: Supabase CLI
maintainer: Supabase CLI
homepage: https://supabase.com
license: MIT
formats:
- apk
- deb
- rpm
- archlinux