File tree Expand file tree Collapse file tree 3 files changed +19
-23
lines changed
Expand file tree Collapse file tree 3 files changed +19
-23
lines changed Original file line number Diff line number Diff line change 1- 🗿 instill- base :
1+ instill base :
22 - " **"
Original file line number Diff line number Diff line change 3232 INSTILL_OAUTH_CLIENT_ID : ${{ secrets.oauth2ClientId }}
3333 INSTILL_OAUTH_CLIENT_SECRET : ${{ secrets.oauth2ClientSecret }}
3434 # config
35- INSTILL_OAUTH_ISSUER : ${{ vars.oauth2Issuer }}
36- INSTILL_OAUTH_HOSTNAME : ${{ vars.oauth2Hostname }}
37- INSTILL_OAUTH_AUDIENCE : ${{ vars.oauth2Audience }}
38- INSTILL_OAUTH_CALLBACK_HOST : ${{ vars.oauth2CallbackHost }}
39- INSTILL_OAUTH_CALLBACK_PORT : ${{ vars.oauth2CallbackPort }}
35+ INSTILL_OAUTH_ISSUER : ${{ vars.INSTILL_OAUTH_ISSUER }}
36+ INSTILL_OAUTH_HOSTNAME : ${{ vars.INSTILL_OAUTH_HOSTNAME }}
37+ INSTILL_OAUTH_AUDIENCE : ${{ vars.INSTILL_OAUTH_AUDIENCE }}
38+ INSTILL_OAUTH_CALLBACK_HOST : ${{ vars.INSTILL_OAUTH_CALLBACK_HOST }}
39+ INSTILL_OAUTH_CALLBACK_PORT : ${{ vars.INSTILL_OAUTH_CALLBACK_PORT }}
Original file line number Diff line number Diff line change @@ -46,23 +46,19 @@ builds:
4646 goarch : [amd64]
4747
4848archives :
49- - id : nix
50- builds : [macos, linux]
51- << : &archive_defaults
52- name_template : " {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
53- wrap_in_directory : true
54- replacements :
55- darwin : macOS
56- format : tar.gz
57- files :
58- - LICENSE
59- - id : windows
60- builds : [windows]
61- << : *archive_defaults
62- wrap_in_directory : false
63- format : zip
64- files :
65- - LICENSE
49+ - format : tar.gz
50+ # this name template makes the OS and Arch compatible with the results of uname.
51+ name_template : >-
52+ {{ .ProjectName }}_
53+ {{- title .Os }}_
54+ {{- if eq .Arch "amd64" }}x86_64
55+ {{- else if eq .Arch "386" }}i386
56+ {{- else }}{{ .Arch }}{{ end }}
57+ {{- if .Arm }}v{{ .Arm }}{{ end }}
58+ # use zip for windows archives
59+ format_overrides :
60+ - goos : windows
61+ format : zip
6662
6763checksum :
6864 name_template : ' checksums_v{{ .Version }}_sha256.txt'
You can’t perform that action at this time.
0 commit comments