Skip to content

Commit

Permalink
Added method to build a firmware manually
Browse files Browse the repository at this point in the history
  • Loading branch information
koron committed Apr 9, 2024
1 parent e99a057 commit 6666b60
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-user.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build a firmware on demand

on:
workflow_dispatch:
inputs:
keyboard:
description: 'Keyboard'
required: true
type: choice
options:
- keyball39
- keyball44
- keyball61
- keyball46
- one47
keymap:
description: 'Keymap'
required: true
type: string
default: 'default'

jobs:

build:

uses: ./.github/workflows/build-firmware.yml
with:
qmk_version: '0.22.14'
keyboard: ${{ inputs.keyboard }}
keymap: ${{ inputs.keymap }}

0 comments on commit 6666b60

Please sign in to comment.