forked from warrensbox/tgswitch
-
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.
Replaced warrensbox with EliaBracciSumo
- Loading branch information
Elia Bracci
committed
Dec 20, 2022
1 parent
2b21bd8
commit a29103a
Showing
15 changed files
with
81 additions
and
78 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
docker: | ||
- image: circleci/golang:1.17 | ||
|
||
working_directory: /go/src/github.com/warrensbox/tgswitch | ||
working_directory: /go/src/github.com/EliaBracciSumo/tgswitch | ||
|
||
steps: | ||
- checkout | ||
|
@@ -24,7 +24,7 @@ jobs: | |
docker: | ||
- image: circleci/golang:1.17 | ||
|
||
working_directory: /go/src/github.com/warrensbox/tgswitch | ||
working_directory: /go/src/github.com/EliaBracciSumo/tgswitch | ||
|
||
steps: | ||
- checkout | ||
|
@@ -37,10 +37,10 @@ jobs: | |
export RELEASE_VERSION; | ||
echo $RELEASE_VERSION | ||
mkdir -p /home/circleci/bin | ||
export PATH="/home/warrensbox/bin:${PATH}" | ||
export PATH="/home/EliaBracciSumo/bin:${PATH}" | ||
rm -rf dist | ||
git config user.email "[email protected]" | ||
git config user.name "warrensbox" | ||
git config user.name "EliaBracciSumo" | ||
git tag -a ${RELEASE_VERSION} -m "Release Version" | ||
git push origin ${RELEASE_VERSION} | ||
curl -L https://git.io/goreleaser | bash | ||
|
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 |
---|---|---|
|
@@ -37,60 +37,60 @@ archives: | |
format_overrides: | ||
- goos: windows | ||
format: zip | ||
brews: | ||
- | ||
# Name of the recipe | ||
# Default to project name | ||
name: tgswitch | ||
# brews: | ||
# - | ||
# # Name of the recipe | ||
# # Default to project name | ||
# name: tgswitch | ||
|
||
# GitHub/GitLab repository to push the formula to | ||
# Gitea is not supported yet, but the support coming | ||
tap: | ||
owner: warrensbox | ||
name: homebrew-tap | ||
# # GitHub/GitLab repository to push the formula to | ||
# # Gitea is not supported yet, but the support coming | ||
# tap: | ||
# owner: warrensbox | ||
# name: homebrew-tap | ||
|
||
# Reporitory to push the tap to. | ||
# github: | ||
# owner: warrensbox | ||
# name: homebrew-tap | ||
# # Reporitory to push the tap to. | ||
# # github: | ||
# # owner: warrensbox | ||
# # name: homebrew-tap | ||
|
||
# Allows you to set a custom download strategy. | ||
# Default is empty. | ||
#download_strategy: GitHubPrivateRepositoryReleaseDownloadStrategy | ||
# # Allows you to set a custom download strategy. | ||
# # Default is empty. | ||
# #download_strategy: GitHubPrivateRepositoryReleaseDownloadStrategy | ||
|
||
# Git author used to commit to the repository. | ||
# Defaults are shown. | ||
commit_author: | ||
name: Warren Veerasingam | ||
email: [email protected] | ||
# # Git author used to commit to the repository. | ||
# # Defaults are shown. | ||
# commit_author: | ||
# name: Warren Veerasingam | ||
# email: [email protected] | ||
|
||
# Folder inside the repository to put the formula. | ||
# Default is the root folder. | ||
folder: Formula | ||
# # Folder inside the repository to put the formula. | ||
# # Default is the root folder. | ||
# folder: Formula | ||
|
||
# Caveats for the user of your binary. | ||
# Default is empty. | ||
caveats: "Type 'tgswitch' on your command line and choose the terragrunt version that you want from the dropdown. This command currently only works on MacOs and Linux" | ||
# # Caveats for the user of your binary. | ||
# # Default is empty. | ||
# caveats: "Type 'tgswitch' on your command line and choose the terragrunt version that you want from the dropdown. This command currently only works on MacOs and Linux" | ||
|
||
# Your app's homepage. | ||
# Default is empty. | ||
homepage: "https://warrensbox.github.io/tgswitch" | ||
# # Your app's homepage. | ||
# # Default is empty. | ||
# homepage: "https://warrensbox.github.io/tgswitch" | ||
|
||
# Your app's description. | ||
# Default is empty. | ||
description: "The tgswitch command lets you switch between terragrunt versions." | ||
# # Your app's description. | ||
# # Default is empty. | ||
# description: "The tgswitch command lets you switch between terragrunt versions." | ||
|
||
# Setting this will prevent goreleaser to actually try to commit the updated | ||
# formula - instead, the formula file will be stored on the dist folder only, | ||
# leaving the responsibility of publishing it to the user. | ||
# Default is false. | ||
skip_upload: false | ||
# # Setting this will prevent goreleaser to actually try to commit the updated | ||
# # formula - instead, the formula file will be stored on the dist folder only, | ||
# # leaving the responsibility of publishing it to the user. | ||
# # Default is false. | ||
# skip_upload: false | ||
|
||
# So you can `brew test` your formula. | ||
# Default is empty. | ||
test: | | ||
system "#{bin}/tgswitch --version" | ||
# Custom install script for brew. | ||
# Default is 'bin.install "program"'. | ||
install: | | ||
bin.install "tgswitch" | ||
# # So you can `brew test` your formula. | ||
# # Default is empty. | ||
# test: | | ||
# system "#{bin}/tgswitch --version" | ||
# # Custom install script for brew. | ||
# # Default is 'bin.install "program"'. | ||
# install: | | ||
# bin.install "tgswitch" |
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,6 +1,6 @@ | ||
EXE := tgswitch | ||
PKG := github.com/warrensbox/tgswitch | ||
VER := $(shell { git ls-remote --tags . 2>/dev/null || git ls-remote --tags [email protected]:warrensbox/tgswitch.git; } | awk '{if ($$2 ~ "\\^\\{\\}$$") next; print vers[split($$2,vers,"\\/")]}' | sort -n -t. -k1,1 -k2,2 -k3,3 | tail -1) | ||
PKG := github.com/EliaBracciSumo/tgswitch | ||
VER := $(shell { git ls-remote --tags . 2>/dev/null || git ls-remote --tags [email protected]:EliaBracciSumo/tgswitch.git; } | awk '{if ($$2 ~ "\\^\\{\\}$$") next; print vers[split($$2,vers,"\\/")]}' | sort -n -t. -k1,1 -k2,2 -k3,3 | tail -1) | ||
PATH := build:$(PATH) | ||
GOOS ?= $(shell go env GOOS) | ||
GOARCH ?= $(shell go env GOARCH) | ||
|
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,4 @@ | ||
module github.com/warrensbox/tgswitch | ||
module github.com/EliaBracciSumo/tgswitch | ||
|
||
go 1.16 | ||
|
||
|
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
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
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
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
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 +1 @@ | ||
0.36.0 | ||
0.26.7 |
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