-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a13eb42
commit 3a7efcf
Showing
4 changed files
with
101 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# The lines below are called `modelines`. See `:help modeline` | ||
# Feel free to remove those if you don't want/need to use them. | ||
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json | ||
# vim: set ts=2 sw=2 tw=0 fo=cnqoj | ||
|
||
|
||
# Test with `goreleaser --snapshot --clean` | ||
# To release, create a tag and push it to Github: `git tag -a v0.1.0 -m "First release" && git push origin v0.1.0`. GoReleaser enforces semantic versioning and will error on non-compliant tags. | ||
# For it to work, you need to have the `GITHUB_TOKEN` environment variable set export GITHUB_TOKEN="YOUR_GH_TOKEN". The minimum permissions the GITHUB_TOKEN should have to run this are write:packages | ||
|
||
# Now you can run GoReleaser at the root of your repository: `goreleaser release` | ||
# For dry run, see https://goreleaser.com/quick-start/#dry-run | ||
|
||
version: 2 | ||
|
||
before: | ||
hooks: | ||
# You may remove this if you don't use go modules. | ||
- go mod tidy | ||
# you may remove this if you don't need go generate | ||
- go generate ./... | ||
|
||
builds: | ||
# The app build is invoked via wails and binary copied manually to the expected output folder | ||
- id: "openem-ingestor-app" | ||
hooks: | ||
pre: | ||
- cmd: mkdir {{dir .Path}} | ||
post: | ||
- dir: cmd/openem-ingestor-app | ||
cmd: wails build -platform {{ .Os }} -clean -ldflags "-s -w -X 'main.version={{.Version}}'" -trimpath -o {{base .Path}} | ||
output: true | ||
- dir: cmd/openem-ingestor-app | ||
cmd: cp build/bin/{{base .Path}} {{dir .Path}}/ | ||
output: true | ||
env: | ||
- CGO_ENABLED=0 | ||
dir: ./cmd/openem-ingestor-app | ||
goos: | ||
- darwin | ||
goarch: | ||
- amd64 | ||
main: . | ||
binary: openem-ingestor-app | ||
gobinary: echo | ||
|
||
archives: | ||
- id: "openem-ingestor-app" | ||
builds: | ||
- openem-ingestor-app | ||
format: tar.gz | ||
|
||
wrap_in_directory: true | ||
name_template: >- | ||
{{ .ProjectName }}_app_ | ||
{{- .Version }}_ | ||
{{- 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 | ||
files: | ||
- src: configs/*.yaml | ||
dst: ./ | ||
- src: configs/schemas/*.json | ||
dst: schemas | ||
|
||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
|
||
release: | ||
prerelease: auto |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters