mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
637f188ebe
* it's happening! * aaa * fix silly whoopsie * it's working pa! it's working ma! * model report parameters * shuffle some more stuff around * getting there * oo hoo * finish tidying up for now * aaa * fix use form submit errors * peepee poo poo * aaaaa * ffff * they see me typin', they hatin' * boop * aaa * oooo * typing typing tappa tappa * almost done typing * weee * alright * push it push it real good doo doo doo doo doo doo * thingy no worky * almost done * mutation modifers not quite right * hmm * it works * view blocks + allows nicely * it works! * typia install * the old linterino * linter plz
189 lines
5.8 KiB
YAML
189 lines
5.8 KiB
YAML
# https://goreleaser.com
|
|
project_name: gotosocial
|
|
before:
|
|
# https://goreleaser.com/customization/hooks/
|
|
hooks:
|
|
# generate the swagger.yaml file using go-swagger and bundle it into the assets directory
|
|
- swagger generate spec --scan-models --exclude-deps -o web/assets/swagger.yaml
|
|
- sed -i "s/REPLACE_ME/{{ incpatch .Version }}/" web/assets/swagger.yaml
|
|
# Install web deps + bundle web assets
|
|
- yarn --cwd ./web/source install
|
|
- yarn --cwd ./web/source ts-patch install # https://typia.io/docs/setup/#manual-setup
|
|
- yarn --cwd ./web/source build
|
|
builds:
|
|
# https://goreleaser.com/customization/build/
|
|
-
|
|
main: ./cmd/gotosocial
|
|
binary: gotosocial
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
- -extldflags
|
|
- -static
|
|
- -X main.Version={{.Version}}
|
|
tags:
|
|
- netgo
|
|
- osusergo
|
|
- static_build
|
|
- kvformat
|
|
- timetzdata
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- freebsd
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 6
|
|
- 7
|
|
ignore:
|
|
# build freebsd only for amd64
|
|
- goos: freebsd
|
|
goarch: arm64
|
|
- goos: freebsd
|
|
goarch: arm
|
|
- goos: freebsd
|
|
goarch: 386
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
dockers:
|
|
# https://goreleaser.com/customization/docker/
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: amd64
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-amd64"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-amd64"
|
|
- "superseriousbusiness/{{ .ProjectName }}:snapshot-amd64"
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: arm64
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-arm64v8"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-arm64v8"
|
|
- "superseriousbusiness/{{ .ProjectName }}:snapshot-arm64v8"
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64/v8"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: arm
|
|
goarm: 6
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv6"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-armv6"
|
|
- "superseriousbusiness/{{ .ProjectName }}:snapshot-armv6"
|
|
build_flag_templates:
|
|
- "--platform=linux/arm/v6"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
-
|
|
use: buildx
|
|
goos: linux
|
|
goarch: arm
|
|
goarm: 7
|
|
image_templates:
|
|
- "superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv7"
|
|
- "superseriousbusiness/{{ .ProjectName }}:latest-armv7"
|
|
- "superseriousbusiness/{{ .ProjectName }}:snapshot-armv7"
|
|
build_flag_templates:
|
|
- "--platform=linux/arm/v7"
|
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
|
- "--label=org.opencontainers.image.title={{.ProjectName}}"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
|
extra_files:
|
|
- web
|
|
- go.mod
|
|
- go.sum
|
|
- cmd
|
|
- internal
|
|
docker_manifests:
|
|
- name_template: superseriousbusiness/{{ .ProjectName }}:{{ .Version }}
|
|
image_templates:
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-amd64
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-arm64v8
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv6
|
|
- superseriousbusiness/{{ .ProjectName }}:{{ .Version }}-armv7
|
|
- name_template: superseriousbusiness/{{ .ProjectName }}:latest
|
|
image_templates:
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-amd64
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-arm64v8
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-armv6
|
|
- superseriousbusiness/{{ .ProjectName }}:latest-armv7
|
|
- name_template: superseriousbusiness/{{ .ProjectName }}:snapshot
|
|
image_templates:
|
|
- superseriousbusiness/{{ .ProjectName }}:snapshot-amd64
|
|
- superseriousbusiness/{{ .ProjectName }}:snapshot-arm64v8
|
|
- superseriousbusiness/{{ .ProjectName }}:snapshot-armv6
|
|
- superseriousbusiness/{{ .ProjectName }}:snapshot-armv7
|
|
archives:
|
|
# https://goreleaser.com/customization/archive/
|
|
-
|
|
id: binary-release
|
|
files:
|
|
# standard release files
|
|
- LICENSE
|
|
- README.md
|
|
- CHANGELOG*
|
|
# web stuff minus source
|
|
- web/assets
|
|
- web/template
|
|
# example config files
|
|
- example/config.yaml
|
|
- example/gotosocial.service
|
|
-
|
|
id: web-assets
|
|
files:
|
|
- LICENSE
|
|
# just the web stuff minus source
|
|
- web/assets
|
|
- web/template
|
|
meta: true
|
|
name_template: "{{ .ProjectName }}_{{ .Version }}_web-assets"
|
|
checksum:
|
|
# https://goreleaser.com/customization/checksum/
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
# https://goreleaser.com/customization/snapshots/
|
|
name_template: "{{ incpatch .Version }}-SNAPSHOT"
|
|
source:
|
|
# https://goreleaser.com/customization/source/
|
|
enabled: true
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}-source-code"
|