We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4809cd4 commit 9bfed9bCopy full SHA for 9bfed9b
1 file changed
.github/workflows/gh-pages.yml
@@ -24,6 +24,10 @@ jobs:
24
- name: Install .NET WebAssembly Tools
25
run: dotnet workload install wasm-tools
26
27
+ # Add GitHub Packages as a NuGet source
28
+ - name: Add GitHub Packages source
29
+ run: dotnet nuget add source "https://nuget.pkg.github.com/jsakamoto/index.json" --name "GitHubPackages" --username "jsakamoto" --password "${{ secrets.GITHUB_TOKEN }}" --store-password-in-clear-text
30
+
31
# Publish the site
32
- name: Publish
33
run: dotnet publish BlazorWasmApp1.csproj -o ../../public -p GHPages=true --nologo
0 commit comments