We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56436a4 commit dc998e7Copy full SHA for dc998e7
1 file changed
.github/workflows/create-release.yml
@@ -0,0 +1,22 @@
1
+name: Create Release
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ type: string
8
+ required: true
9
+ description: 'Provide the version branch identifier you want to release. For version/1.21 that would be 1.21.'
10
11
+permissions:
12
+ contents: write
13
+ statuses: write
14
+ actions: write
15
16
+jobs:
17
+ release:
18
+ uses: ldtteam/operapublicacreator/.github/workflows/branch.sync.yaml@main
19
+ with:
20
+ version: ${{ inputs.version }}
21
+ workflow_file: 'release.yaml'
22
+ secrets: inherit
0 commit comments