Skip to content

Commit a62c9a2

Browse files
committed
add action 'release clients'
1 parent 7943c7a commit a62c9a2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: release clients
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: "Version"
8+
required: true
9+
options:
10+
description: "Possible options: --prerelease"
11+
required: false
12+
default: ""
13+
14+
jobs:
15+
16+
release-clients:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Release clients
20+
run: |
21+
gh release create v${{github.event.inputs.version}} ${{github.event.inputs.options}} --title ${{github.event.inputs.version}} --repo regulaforensics/DocumentReader-web-js-client
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}

0 commit comments

Comments
 (0)