Skip to content

Commit 123390f

Browse files
authored
Create dispatch-release.yaml
1 parent 8ce0644 commit 123390f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)