We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2d630d commit cbd178aCopy full SHA for cbd178a
.github/workflows/build.yaml
@@ -25,7 +25,17 @@ jobs:
25
- name: Clean install dependencies
26
run: npm ci
27
28
- - name: Build application
+ - name: Build application (Windows)
29
+ if: runner.os == 'Windows'
30
+ run: |
31
+ npm run make -- --arch x64
32
+ npm run make -- --arch arm64
33
+ env:
34
+ NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
35
+ NUGET_HTTP_CACHE_PATH: ${{ github.workspace }}/.nuget/cache
36
+
37
+ - name: Build application (Linux)
38
+ if: runner.os == 'Linux'
39
run: npm run make -- --arch x64,arm64
40
41
- name: Upload artifacts
0 commit comments