Skip to content

Commit a49c3c2

Browse files
committed
Add release workflow
1 parent c2a7503 commit a49c3c2

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release
2+
3+
run-name: Release ${{ github.event.inputs.version }}
4+
5+
on:
6+
workflow_dispatch:
7+
inputs:
8+
version:
9+
description: 'Version of camunda-ext'
10+
required: true
11+
type: string
12+
13+
jobs:
14+
run-camunda-ext-ci:
15+
if: github.ref_name != github.event.repository.default_branch
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: no action
19+
run: true

0 commit comments

Comments
 (0)