Skip to content

Commit a2169eb

Browse files
committed
Add dotnet ci-build
1 parent b20b8e9 commit a2169eb

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

ci-build.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
curl -sSL https://dot.net/v1/dotnet-install.sh > dotnet-install.sh
3+
chmod +x dotnet-install.sh
4+
DOTNET_VERSION=10.0
5+
./dotnet-install.sh -c $DOTNET_VERSION -InstallDir ./dotnet
6+
./dotnet/dotnet --version
7+
./dotnet/dotnet publish \
8+
src/BlazorApps/BlazorApps.csproj \
9+
-c Release \
10+
-o output

0 commit comments

Comments
 (0)