Skip to content

Commit

Permalink
Add workflow_dispatch trigger to build workflow
Browse files Browse the repository at this point in the history
This allows a run to be triggered on demand in the GitHub Actions web interface, without needing to push a change to a branch. This can be particularly useful when checking if changes to the build environment have broken the build, even though no code changes have been made in a long time.
  • Loading branch information
DanRStevens committed Jan 23, 2024
1 parent 7dfc1d9 commit cb482fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Build

on: [push]
on:
push:
workflow_dispatch:

jobs:
windows:
Expand Down

0 comments on commit cb482fd

Please sign in to comment.