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 8ce0644 commit 123390fCopy full SHA for 123390f
.github/workflows/dispatch-release.yaml
@@ -0,0 +1,19 @@
1
+# This workflow builds the release, triggered from outside by an automated process.
2
+# It creates the release based on the given input.
3
+name: Repository dispatch Release
4
+
5
+on:
6
+ repository_dispatch:
7
+ types: [ build_release ]
8
9
+jobs:
10
+ run-release:
11
+ name: "Release ${{ github.event.client_payload.releaseVersion }}"
12
+ uses: ./.github/workflows/release.yml
13
+ secrets: inherit
14
+ with:
15
+ releaseBranch: ${{ github.event.client_payload.releaseBranch }}
16
+ releaseVersion: ${{ github.event.client_payload.releaseVersion }}
17
+ nextDevelopmentVersion: ${{ github.event.client_payload.nextDevelopmentVersion }}
18
+ dryRun: ${{ github.event.client_payload.dryRun }}
19
0 commit comments