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: 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}