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:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
release_name:
|
||||||
|
description: "allow setting the release name"
|
||||||
|
default: "latest"
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
@@ -23,7 +29,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ github.token }}
|
||||||
name: Latest QMK Firmware
|
name: Latest QMK Firmware
|
||||||
tag_name: latest
|
tag_name: ${{ inputs.release_name || 'latest' }}
|
||||||
fail_on_unmatched_files: false
|
fail_on_unmatched_files: false
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
|
|||||||
Reference in New Issue
Block a user