Skip to content

Commit

Permalink
add option to manually trigger workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PetervanLunteren authored Jan 28, 2025
1 parent 3c5abf7 commit 2c298e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Build Windows release

on:
workflow_dispatch:
inputs:
tag_name:
description: "What is tag name of the latest release? E.g., v5.29"
required: true
release:
types:
- published
Expand All @@ -11,7 +15,7 @@ jobs:
runs-on: windows-2022

env:
RELEASE_VERSION: ${{ github.event.release.tag_name }}
RELEASE_VERSION: ${{ github.event_name == 'release' && github.event.release.tag_name || inputs.tag_name }}
BUCKET_NAME: github-release-files-storage
CONDA_DIR: C:\Miniconda

Expand Down

0 comments on commit 2c298e2

Please sign in to comment.