diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8246f03..e1ac1bd9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -24,17 +24,13 @@ jobs: | |||
24 | - name: Checkout code | 24 | - name: Checkout code |
25 | uses: actions/checkout@v2 | 25 | uses: actions/checkout@v2 |
26 | 26 | ||
27 | - name: Setup dotnet | ||
28 | uses: actions/setup-dotnet@v1 | ||
29 | with: | ||
30 | dotnet-version: '5.0.x' | ||
31 | |||
32 | - name: Add MSBuild to PATH | ||
33 | uses: microsoft/setup-msbuild@v1.0.3 | ||
34 | |||
35 | - name: Build wix4 | 27 | - name: Build wix4 |
36 | shell: cmd | 28 | shell: cmd |
37 | run: ./build.cmd | 29 | run: ./src/build_official.cmd |
30 | env: | ||
31 | RuntimeTestsEnabled: ${{ github.ref == 'refs/heads/master' }} | ||
32 | SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} | ||
33 | SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} | ||
38 | 34 | ||
39 | - name: Save build | 35 | - name: Save build |
40 | uses: actions/upload-artifact@v2 | 36 | uses: actions/upload-artifact@v2 |