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 7943c7a commit a62c9a2Copy full SHA for a62c9a2
.github/workflows/release-clients.yml
@@ -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