Remove tag for now
This commit is contained in:
parent
1efd61340f
commit
dd5135511b
1 changed files with 5 additions and 2 deletions
|
@ -23,8 +23,8 @@ name: Build & Release Go Project
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
# tags:
|
||||||
- 'v*'
|
# - 'v*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -45,6 +45,9 @@ jobs:
|
||||||
# Create the build directory for a consistent place to store binaries
|
# Create the build directory for a consistent place to store binaries
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
|
|
||||||
|
# Do a quick tidy
|
||||||
|
go mod tidy
|
||||||
|
|
||||||
# Iterate over the cmd directory to compile all binaries found there
|
# Iterate over the cmd directory to compile all binaries found there
|
||||||
ls ./cmd | while read BINARY ; do
|
ls ./cmd | while read BINARY ; do
|
||||||
go build -v -o build/${BINARY} ./cmd/${BINARY}
|
go build -v -o build/${BINARY} ./cmd/${BINARY}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue