File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 7979 - name : Replace local environment variable in nuget config because cant provide it as a parameter
8080 run : |
8181 sed -i "s|%TEL_BLAZOR_PACKAGE_SOURCE%|$LOCAL_PACKAGES_PATH|g" nuget.config
82- # sed -i "s|%GITHUB_USERNAME%|$GITHUB_USERNAME|g" nuget.config
83- # sed -i "s|%TEL_GIT_PACKAGES_TOKEN%|$TEL_GIT_PACKAGES_TOKEN|g" nuget.config
8482
8583 - name : Create appsettings development from secrets
8684 run : |
@@ -111,8 +109,10 @@ jobs:
111109 node-version : ' 20'
112110
113111 - name : Install npm packages so we have gulp for retrieving TEL Frontend Css
114- # working-directory: ./TELBlazor.Components
115- run : npm ci
112+ run : npm ci
113+
114+ - name : Install wasm-tools workload (wasm-tools used for delinking so can test against optimised client wasm using TELBlazor package)
115+ run : dotnet workload install wasm-tools --skip-manifest-update --source https://api.nuget.org/v3/index.json
116116
117117 - name : Build and create package locally
118118 run : |
@@ -233,8 +233,10 @@ jobs:
233233
234234 - name : Install ReportGenerator
235235 run : dotnet tool restore
236+
237+ - name : Install wasm-tools workload (wasm-tools used for delinking so can test against optimised client wasm using TELBlazor package)
238+ run : dotnet workload install wasm-tools --skip-manifest-update --source https://api.nuget.org/v3/index.json
236239
237-
238240 - name : Build and create package locally
239241 run : |
240242 dotnet build TELBlazor.Components -c Release \
You can’t perform that action at this time.
0 commit comments