File tree Expand file tree Collapse file tree 5 files changed +4
-53
lines changed Expand file tree Collapse file tree 5 files changed +4
-53
lines changed Original file line number Diff line number Diff line change 51
51
args : release --rm-dist
52
52
env :
53
53
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
54
+ GH_RELEASE_TOKEN : ${{ secrets.GH_RELEASE_TOKEN }}
54
55
AC_USERNAME : ${{ secrets.AC_USERNAME }}
55
56
AC_PASSWORD : ${{ secrets.AC_PASSWORD }}
56
57
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
Original file line number Diff line number Diff line change @@ -130,15 +130,15 @@ brews:
130
130
owner : let-sh
131
131
name : homebrew-tap
132
132
# Optionally a token can be provided, if it differs from the token provided to GoReleaser
133
- token : " {{ .Env.GITHUB_TOKEN }}"
133
+ token : " {{ .Env.GH_RELEASE_TOKEN }}"
134
134
135
135
url_template : " http://install.let-sh.com/{{ .ArtifactName }}"
136
136
137
137
# Allows you to set a custom download strategy. Note that you'll need
138
138
# to implement the strategy and add it to your tap repository.
139
139
# Example: https://docs.brew.sh/Formula-Cookbook#specifying-the-download-strategy-explicitly
140
140
# Default is empty.
141
- # download_strategy: CurlDownloadStrategy.
141
+ # download_strategy: CurlDownloadStrategy.
142
142
143
143
# Allows you to add a custom require_relative at the top of the formula template
144
144
# Default is empty
@@ -176,12 +176,11 @@ brews:
176
176
# If set to auto, the release will not be uploaded to the homebrew tap
177
177
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
178
178
# Default is false.
179
- skip_upload : true
179
+ # skip_upload: true
180
180
181
181
# Packages your package depends on.
182
182
dependencies :
183
183
- name : git
184
- - name : upx
185
184
- name : zsh
186
185
type : optional
187
186
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -85,11 +85,6 @@ func (c *DeployContext) DetectProjectType() (projectType string) {
85
85
return "gateway"
86
86
}
87
87
88
- if utils .ItemExists (packages , "@surgio/gateway" ) {
89
- c .Type = "surgio"
90
- return "surgio"
91
- }
92
-
93
88
if utils .ItemExists (packages , "express" ) {
94
89
c .Type = "express"
95
90
return "express"
You can’t perform that action at this time.
0 commit comments