Remove tag for now

This commit is contained in:
j 2025-06-17 15:52:24 +10:00
parent 1efd61340f
commit dd5135511b

View file

@ -23,8 +23,8 @@ name: Build & Release Go Project
on:
push:
tags:
- 'v*'
# tags:
# - 'v*'
jobs:
build:
@ -45,6 +45,9 @@ jobs:
# Create the build directory for a consistent place to store binaries
mkdir -p build
# Do a quick tidy
go mod tidy
# Iterate over the cmd directory to compile all binaries found there
ls ./cmd | while read BINARY ; do
go build -v -o build/${BINARY} ./cmd/${BINARY}