1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

GHA: Add a workflow to publish a GitHub release

This commit is contained in:
Tom Poole 2025-04-08 09:19:52 +01:00
parent 9083cd9135
commit f76d1eecbe

View file

@ -0,0 +1,16 @@
name: JUCE Private GitHub Publish
on:
workflow_dispatch:
inputs:
tag:
required: true
type: string
description: The tag to publish ("5.4.5")
jobs:
publish-github-release:
uses: juce-framework/JUCE-utils/.github/workflows/github_publish.yml@master
with:
tag: ${{ inputs.tag }}
secrets: inherit