Skip to content

Commit dc998e7

Browse files
committed
Create create-release.yml
1 parent 56436a4 commit dc998e7

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)