-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from ponkio-o/feat/added-goreleaser
feat: added GoRereleaser
- Loading branch information
Showing
7 changed files
with
143 additions
and
116 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
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
tmp | ||
dist | ||
out | ||
.env | ||
# Created by https://www.toptal.com/developers/gitignore/api/go | ||
|
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,89 @@ | ||
version: 1 | ||
|
||
builds: | ||
- id: unity-meta-check | ||
binary: unity-meta-check | ||
main: ./main.go | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
- id: unity-meta-check-junit | ||
binary: unity-meta-check-junit | ||
main: ./tool/unity-meta-check-junit | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
- id: gh-action | ||
binary: gh-action | ||
main: ./tool/gh-action | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
- id: gh-action-yaml-gen | ||
binary: gh-action-yaml-gen | ||
main: ./tool/gh-action/action-yaml-gen | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
- id: unity-meta-autofix | ||
binary: unity-meta-autofix | ||
main: ./tool/unity-meta-autofix | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
- id: unity-meta-check-github-pr-comment | ||
binary: unity-meta-check-github-pr-comment | ||
main: ./tool/unity-meta-check-github-pr-comment | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
|
||
archives: | ||
- format: binary | ||
name_template: >- | ||
{{ .Binary }}- | ||
{{- if eq .Os "Darwin" }}darwin- | ||
{{- else if eq .Os "Linux" }}linux- | ||
{{- else }}{{ .Os }}{{ end }}-{{ .Arch }} | ||
# https://goreleaser.com/errors/multiple-binaries-archive/ | ||
allow_different_binary_count: true | ||
|
||
checksum: | ||
name_template: "checksums.txt" | ||
|
||
release: | ||
prerelease: auto |
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,14 @@ | ||
--- | ||
# aqua - Declarative CLI Version Manager | ||
# https://aquaproj.github.io/ | ||
# checksum: | ||
# enabled: true | ||
# require_checksum: true | ||
# supported_envs: | ||
# - all | ||
registries: | ||
- type: standard | ||
ref: v4.166.0 # renovate: depName=aquaproj/aqua-registry | ||
packages: | ||
- name: goreleaser/goreleaser@v1.25.1 | ||
- name: cli/cli@v2.49.1 |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.