Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove darwin from goos and snapshot release before tags #1179

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
version: 2
builds:
- dir: ./farmerbot
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
binary: farmerbot
id: farmerbot

Expand All @@ -22,7 +22,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: tfcmd
id: tfcmd

Expand All @@ -38,7 +37,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: tf-grid-cli
id: tf-grid-cli

Expand All @@ -54,7 +52,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: tfrobot
id: tfrobot

Expand All @@ -70,7 +67,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: tfgridproxy
id: tfgridproxy

Expand All @@ -86,7 +82,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: gridify
id: gridify

Expand All @@ -102,7 +97,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: monitoring-bot
id: monitoring-bot

Expand All @@ -116,7 +110,6 @@ builds:
goos:
- linux
- windows
- darwin
binary: cache-warmer
id: cache-warmer

Expand Down
1 change: 1 addition & 0 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ fi
echo $VERSION

goreleaser check
goreleaser release --snapshot --clean

tag_and_push() {
local component="$1"
Expand Down
Loading