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 d6b55a3 commit efc299eCopy full SHA for efc299e
.github/workflows/build.yml
@@ -11,6 +11,9 @@ on:
11
branches:
12
- master
13
14
+ repository_dispatch:
15
+ types: [release]
16
+
17
env:
18
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: 2
19
ENABLED_MULTI_STAGE_BUILD: true
.github/workflows/release.yml
@@ -0,0 +1,16 @@
1
+name: Release
2
+on:
3
+ release:
4
+ types: [published]
5
6
+jobs:
7
+ callBuildFlow:
8
+ name: Call Build flow
9
+ runs-on: ubuntu-latest
10
+ steps:
+ - uses: actions/checkout@v2
+ - name: Call Build flow
+ uses: peter-evans/repository-dispatch@v1
+ with:
+ event-type: release
+ token: ${{ secrets.REPO_ACCESS_TOKEN }}
0 commit comments