From cbb4c1113dc0fed98494f54ee3848884e33db10b Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Sat, 21 Oct 2023 01:12:12 -0400 Subject: [PATCH] CI: Build binaries for tag pushes GitHub Actions was set to only build for branch pushes (only master branch due to the branch filter), PRs, and manual workflow dispatches. Now, GitHub Actions will also build for tag pushes. This helps to ensure Regular releases get signed binaries built for them. (GitHub Actions is set to only *sign* the binaries for push events. Tag creations/pushes will generate push events, so tag pushes should indeed make signed binaries, not unsigned ones.) --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 003594583..91b0dd064 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,8 @@ on: push: branches: - 'master' + tags: + - '**' pull_request: workflow_dispatch: