mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-29 10:38:18 +08:00
chore: fix publish target framework (#2484)
This commit is contained in:
parent
69cb9e015e
commit
b674a9ffef
2
.github/workflows/nightly-build.yml
vendored
2
.github/workflows/nightly-build.yml
vendored
@ -118,7 +118,7 @@ jobs:
|
||||
run: |
|
||||
npm install
|
||||
sed -i s/{version}/$PACKAGE_VERSION/g ./site/AntDesign.Docs/Shared/HeaderMenu.razor
|
||||
dotnet publish ./site/AntDesign.Docs.Wasm -c Release -f net5 -o cargo
|
||||
dotnet publish ./site/AntDesign.Docs.Wasm -c Release -f net6 -o cargo
|
||||
env:
|
||||
PACKAGE_VERSION: ${{ steps.pack.outputs.package_version }}
|
||||
|
||||
|
2
.github/workflows/pr-preview.yml
vendored
2
.github/workflows/pr-preview.yml
vendored
@ -63,7 +63,7 @@ jobs:
|
||||
git checkout fork
|
||||
npm install
|
||||
dotnet build
|
||||
dotnet publish ./site/AntDesign.Docs.Wasm -c Release -f net5 -o cargo
|
||||
dotnet publish ./site/AntDesign.Docs.Wasm -c Release -f net6 -o cargo
|
||||
|
||||
- name: Deploy Preview 🚀
|
||||
env:
|
||||
|
@ -21,8 +21,8 @@
|
||||
"url": "https://github.com/ElderJames/ant-design-blazor/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "dotnet watch -p ./site/AntDesign.Docs.Server run -f net5",
|
||||
"start:wasm": "dotnet watch -p ./site/AntDesign.Docs.Wasm run -f net5",
|
||||
"start": "dotnet watch -p ./site/AntDesign.Docs.Server run -f net6",
|
||||
"start:wasm": "dotnet watch -p ./site/AntDesign.Docs.Wasm run -f net6",
|
||||
"gulp:components": "gulp --gulpfile ./components/gulpfile.js",
|
||||
"gulp:docs": "gulp --gulpfile ./site/AntDesign.Docs/gulpfile.js",
|
||||
"preinstall": "dotnet tool restore",
|
||||
|
Loading…
Reference in New Issue
Block a user