Skip to content

Commit f76d1ee

Browse files
committed
GHA: Add a workflow to publish a GitHub release
1 parent 9083cd9 commit f76d1ee

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: JUCE Private GitHub Publish
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
required: true
8+
type: string
9+
description: The tag to publish ("5.4.5")
10+
11+
jobs:
12+
publish-github-release:
13+
uses: juce-framework/JUCE-utils/.github/workflows/github_publish.yml@master
14+
with:
15+
tag: ${{ inputs.tag }}
16+
secrets: inherit

0 commit comments

Comments
 (0)