Skip to content

Commit

Permalink
Create manual.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Dana-Prajea authored Oct 19, 2024
1 parent 5a5e485 commit 9d4c9ee
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

name: Manual

on:
workflow_dispatch:
inputs:
buildType:
description: 'Build Type'
required: true
default: 'Debug'
type: choice
options:
- Debug
- Release

jobs:
build:

runs-on: windows-2022

steps:

# Print inputs
- name: Print Inputs
run: |
echo "Branch name: ${{ github.ref_name }}"
echo "Release Type: ${{ github.event.inputs.buildType }}"

0 comments on commit 9d4c9ee

Please sign in to comment.