Skip to content

Commit

Permalink
Update build_and_release_all.yml
Browse files Browse the repository at this point in the history
allow manual builds of branches
  • Loading branch information
mikecarr authored Jan 30, 2025
1 parent f4371de commit dff12d1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build_and_release_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ permissions:
actions: read

on:
workflow_dispatch:
workflow_dispatch: # Allows manual triggering from any branch
inputs:
branch:
description: 'Branch to build'
required: false
default: ${{ github.ref_name }}
push:
tags:
- 'release-v*' # Trigger for tags that start with 'v', e.g., v1.0.0, v2.1.3
Expand Down

0 comments on commit dff12d1

Please sign in to comment.