Skip to content

Commit

Permalink
CI: Build binaries for tag pushes
Browse files Browse the repository at this point in the history
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.)
  • Loading branch information
DeeDeeG committed Oct 21, 2023
1 parent 6f1c772 commit cbb4c11
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- 'master'
tags:
- '**'
pull_request:
workflow_dispatch:

Expand Down

0 comments on commit cbb4c11

Please sign in to comment.