summaryrefslogtreecommitdiff
path: root/.goreleaser.yml
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2022-06-19 16:44:38 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-19 16:44:38 +0200
commitf42d5d807cf4d6a8d563725d90ea68da32ddd706 (patch)
tree8b1196651369175cd8209f43e085eb5edd0aae71 /.goreleaser.yml
parent[bugfix] for the second accounts.note_raw migration (#653) (diff)
downloadgotosocial-f42d5d807cf4d6a8d563725d90ea68da32ddd706.tar.xz
[packaging] Packaging updates (#655)
* update versions * disable source tar bundling * add tar for just compiled web assets
Diffstat (limited to '.goreleaser.yml')
-rw-r--r--.goreleaser.yml14
1 files changed, 12 insertions, 2 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml
index 8a6cc802c..901b2fec1 100644
--- a/.goreleaser.yml
+++ b/.goreleaser.yml
@@ -142,17 +142,27 @@ docker_manifests:
archives:
# https://goreleaser.com/customization/archive/
-
+ id: binary-release
files:
# standard release files
- LICENSE
- README.md
- CHANGELOG*
- # web assets
+ # 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'
@@ -161,4 +171,4 @@ snapshot:
name_template: "{{ incpatch .Version }}-SNAPSHOT"
source:
# https://goreleaser.com/customization/source/
- enabled: true
+ enabled: false