Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Nov 16, 2023
1 parent f2a0c1f commit 5bc4e3c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.sst
dist
37 changes: 16 additions & 21 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
project_name: sst
before:
hooks:
- go mod tidy
Expand All @@ -10,37 +11,31 @@ builds:
- darwin
main: ./cmd/sst

archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of uname.
name_template: >-
sst-
{{- title .Os }}-
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
# archives:
# - format: tar.gz
# # this name template makes the OS and Arch compatible with the results of uname.
# name_template: >-
# sst-
# {{- title .Os }}-
# {{- if eq .Arch "amd64" }}x86_64
# {{- else if eq .Arch "386" }}i386
# {{- else }}{{ .Arch }}{{ end }}
# {{- if .Arm }}v{{ .Arm }}{{ end }}
# # use zip for windows archives
# format_overrides:
# - goos: windows
# format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
aurs:
- homepage: "https://github.com/sst/ion"
name: sst-bin
description: "Deploy anything"
private_key: '{{ .Env.AUR_KEY }}'
git_url: 'ssh://[email protected]/sst-bin.git'
provides:
- sst
conflicts:
- sst
brews:
- name: sst
repository:
- repository:
owner: sst
name: homebrew-tap

Expand Down

0 comments on commit 5bc4e3c

Please sign in to comment.