-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable creation of release assets (#124)
- Loading branch information
Showing
4 changed files
with
64 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: release assets | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version-file: go.mod | ||
- run: make fmt | ||
- run: make tidy | ||
- run: make vet | ||
- run: make test-unit | ||
- run: make test-system | ||
- uses: goreleaser/goreleaser-action@v3 | ||
with: | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} |
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,36 @@ | ||
builds: | ||
- main: ./cmd/zync | ||
env: | ||
- CGO_ENABLED=0 | ||
ldflags: | ||
- -s -X github.com/brimdata/zync/cmd/zync/version.version={{ .Summary }} | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
archives: | ||
- name_template: zync-{{ .Summary }}.{{ .Os }}-{{ .Arch }} | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
files: | ||
- LICENSE.txt | ||
release: | ||
header: | | ||
View [change log](CHANGELOG.md#{{ replace .Summary "." "" }}). | ||
brews: | ||
- name: zync | ||
repository: | ||
owner: brimdata | ||
name: homebrew-tap | ||
commit_author: | ||
name: brim-bot | ||
email: [email protected] | ||
homepage: https://github.com/brimdata/zync | ||
description: | | ||
Kafka connector to sync Zed lakes to and from Kafka topics | ||
changelog: | ||
skip: true |
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,3 @@ | ||
## v0.10.0 | ||
|
||
* Allow org.apache names in Connect JSON schema (#123) |
File renamed without changes.