We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d7508 commit 6f9cac0Copy full SHA for 6f9cac0
1 file changed
.github/workflows/publish-packages.yml
@@ -34,6 +34,9 @@ jobs:
34
with:
35
dotnet-version: ${{ env.DOTNET_VERSION }}
36
37
+ - name: Install .NET workloads
38
+ run: dotnet workload install wasm-tools
39
+
40
- name: Cache NuGet packages
41
uses: actions/cache@v4
42
@@ -61,7 +64,9 @@ jobs:
61
64
cat ${{ env.PROJECT_PATH }} | grep -A1 -B1 "<Version>"
62
65
63
66
- name: Restore dependencies
- run: dotnet restore
67
+ run: |
68
+ dotnet workload restore
69
+ dotnet restore
70
71
- name: Build solution
72
run: dotnet build --no-restore --configuration Release
0 commit comments