We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41233f commit 2f1c781Copy full SHA for 2f1c781
3 files changed
.github/workflows/build.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- master
7
+ repository_dispatch:
8
+ types: [build]
9
10
jobs:
11
.github/workflows/publish-release.yml
@@ -10,7 +10,7 @@ jobs:
publishPackages:
12
13
- runs-on: windows-latest
+ runs-on: ubuntu-latest
14
15
env:
16
SOLUTION_PATH: 'src/Blockcore.sln'
@@ -25,7 +25,7 @@ jobs:
25
with:
26
dotnet-version: '3.1.101'
27
28
- - name: Setup NuGet.exe
+ - name: Setup NuGet
29
uses: NuGet/setup-nuget@v1.0.2
30
31
# - name: Set GITHUB_OWNER
.github/workflows/test.yml
@@ -3,6 +3,8 @@ name: Test
3
on:
schedule:
- cron: '0 3 * * *'
+ types: [test]
0 commit comments