2020-08-01 23:36:27 +00:00
|
|
|
project_name: jfa-go
|
|
|
|
release:
|
|
|
|
github:
|
|
|
|
owner: hrfee
|
|
|
|
name: jfa-go
|
2020-08-02 01:11:50 +00:00
|
|
|
name_template: "v{{.Version}}"
|
2020-08-01 20:20:02 +00:00
|
|
|
before:
|
|
|
|
hooks:
|
|
|
|
- go mod download
|
2021-01-05 18:16:23 +00:00
|
|
|
- rm -rf data/web
|
|
|
|
- mkdir -p data
|
|
|
|
- cp -r static data/web
|
|
|
|
- npm install
|
2021-02-11 18:21:21 +00:00
|
|
|
- npm install esbuild
|
2021-01-23 18:53:14 +00:00
|
|
|
- mkdir -p data/web/css
|
2021-01-23 19:08:27 +00:00
|
|
|
- npx esbuild --bundle css/base.css --outfile=./data/web/css/bundle.css --external:remixicon.css --minify
|
2021-01-05 18:16:23 +00:00
|
|
|
- cp node_modules/remixicon/fonts/remixicon.css node_modules/remixicon/fonts/remixicon.woff2 data/web/css/
|
|
|
|
- cp -r html data/
|
|
|
|
- cp -r lang data/
|
2021-03-07 16:45:35 +00:00
|
|
|
- cp LICENSE data/
|
2021-02-17 14:32:03 +00:00
|
|
|
- python3 scripts/enumerate_config.py -i config/config-base.json -o data/config-base.json
|
|
|
|
- python3 scripts/generate_ini.py -i config/config-base.json -o data/config-default.ini
|
|
|
|
- python3 scripts/compile_mjml.py -o data/
|
2021-01-23 19:08:27 +00:00
|
|
|
- npx esbuild --bundle ts/admin.ts --outfile=./data/web/js/admin.js --minify
|
|
|
|
- npx esbuild --bundle ts/form.ts --outfile=./data/web/js/form.js --minify
|
2021-01-26 00:37:32 +00:00
|
|
|
- npx esbuild --bundle ts/setup.ts --outfile=./data/web/js/setup.js --minify
|
2020-10-08 20:25:34 +00:00
|
|
|
- go get -u github.com/swaggo/swag/cmd/swag
|
2020-09-24 23:11:52 +00:00
|
|
|
- swag init -g main.go
|
2021-02-17 14:32:03 +00:00
|
|
|
- python3 scripts/embed.py internal
|
2020-08-01 20:20:02 +00:00
|
|
|
builds:
|
2020-08-01 23:36:27 +00:00
|
|
|
- dir: ./
|
|
|
|
env:
|
|
|
|
- CGO_ENABLED=0
|
2021-03-07 15:23:44 +00:00
|
|
|
ldflags:
|
2021-03-07 15:54:32 +00:00
|
|
|
- -s -w -X main.version={{.Env.JFA_GO_VERSION}} -X main.commit={{.ShortCommit}} -X main.updater=binary
|
2020-08-01 23:36:27 +00:00
|
|
|
goos:
|
|
|
|
- linux
|
|
|
|
- windows
|
|
|
|
- darwin
|
2020-08-16 13:55:39 +00:00
|
|
|
goarch:
|
|
|
|
- amd64
|
|
|
|
- arm
|
|
|
|
- arm64
|
2020-08-01 20:20:02 +00:00
|
|
|
archives:
|
2020-08-01 23:36:27 +00:00
|
|
|
- replacements:
|
2021-02-17 16:53:15 +00:00
|
|
|
darwin: macOS
|
2020-08-01 23:36:27 +00:00
|
|
|
linux: Linux
|
|
|
|
windows: Windows
|
|
|
|
amd64: x86_64
|
2020-08-01 20:20:02 +00:00
|
|
|
checksum:
|
2020-08-01 23:36:27 +00:00
|
|
|
name_template: 'checksums.txt'
|
2020-08-01 20:20:02 +00:00
|
|
|
snapshot:
|
2020-10-22 16:57:05 +00:00
|
|
|
name_template: "git-{{.ShortCommit}}"
|
2020-08-01 20:20:02 +00:00
|
|
|
changelog:
|
2020-08-01 23:36:27 +00:00
|
|
|
sort: asc
|
|
|
|
filters:
|
|
|
|
exclude:
|
|
|
|
- '^docs:'
|
|
|
|
- '^test:'
|