We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 929eee0 commit 17015daCopy full SHA for 17015da
2 files changed
.github/workflows/release.yml
@@ -0,0 +1,18 @@
1
+name: Release
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: 'New version to be added'
8
+ required: true
9
+ type: string
10
11
+jobs:
12
+ release:
13
+ uses: fizyk/actions-reuse/.github/workflows/shared-release.yml@4.2.0
14
+ with:
15
+ version: ${{ inputs.version }}
16
+ secrets:
17
+ app_id: ${{ secrets.RELEASE_APP_ID }}
18
+ private_key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
newsfragments/+53da9cae.misc.rst
@@ -0,0 +1 @@
+Add new release workflow, which will allow releasing new versions directly from GitHub.
0 commit comments