mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-29 18:48:50 +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: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
sed -i s/{version}/$PACKAGE_VERSION/g ./site/AntDesign.Docs/Shared/HeaderMenu.razor
|
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:
|
env:
|
||||||
PACKAGE_VERSION: ${{ steps.pack.outputs.package_version }}
|
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
|
git checkout fork
|
||||||
npm install
|
npm install
|
||||||
dotnet build
|
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 🚀
|
- name: Deploy Preview 🚀
|
||||||
env:
|
env:
|
||||||
|
@ -21,8 +21,8 @@
|
|||||||
"url": "https://github.com/ElderJames/ant-design-blazor/issues"
|
"url": "https://github.com/ElderJames/ant-design-blazor/issues"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "dotnet watch -p ./site/AntDesign.Docs.Server 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 net5",
|
"start:wasm": "dotnet watch -p ./site/AntDesign.Docs.Wasm run -f net6",
|
||||||
"gulp:components": "gulp --gulpfile ./components/gulpfile.js",
|
"gulp:components": "gulp --gulpfile ./components/gulpfile.js",
|
||||||
"gulp:docs": "gulp --gulpfile ./site/AntDesign.Docs/gulpfile.js",
|
"gulp:docs": "gulp --gulpfile ./site/AntDesign.Docs/gulpfile.js",
|
||||||
"preinstall": "dotnet tool restore",
|
"preinstall": "dotnet tool restore",
|
||||||
|
Loading…
Reference in New Issue
Block a user