From 49f8c4e7dbd4317aa68745d1b3712cb891a28f10 Mon Sep 17 00:00:00 2001 From: Trevor Brown Date: Thu, 19 Dec 2024 14:17:31 -0500 Subject: [PATCH] chore(golang-rewrite): disable dev releases and builds Fixes #1818 --- .github/workflows/release-build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index aeb647ba4..29690db7b 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -13,10 +13,13 @@ permissions: # pushed. But since this is a new projectu I'm doing it on every new commit to # the master branch. This will make it easy to download and test binaries for # each new version. +# on: - push: - branches: - - master + workflow_dispatch: +# Don't create release and binaries on pushes to master +# push: +# branches: +# - master # TODO: Uncomment once this is merged and we're ready to prepare the first # public tagged version of the Golang implementation.