mirror of
https://github.com/qmk/.github.git
synced 2026-09-07 16:00:17 +02:00
Allow setting release name to something other than latest (#3)
This commit is contained in:
@@ -2,6 +2,12 @@ name: Build Binaries
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
release_name:
|
||||
description: "allow setting the release name"
|
||||
default: "latest"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@@ -23,7 +29,7 @@ jobs:
|
||||
with:
|
||||
token: ${{ github.token }}
|
||||
name: Latest QMK Firmware
|
||||
tag_name: latest
|
||||
tag_name: ${{ inputs.release_name || 'latest' }}
|
||||
fail_on_unmatched_files: false
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
Reference in New Issue
Block a user