We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c63db2f commit da8fd5cCopy full SHA for da8fd5c
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,28 @@
1
+name: Publish
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Setup .NET
17
+ uses: actions/setup-dotnet@v4
18
+ with:
19
+ dotnet-version: "9.0.x"
20
21
+ - name: Restore
22
+ run: dotnet restore ./BalanceBoard.sln
23
24
+ - name: Build
25
+ run: dotnet build ./BalanceBoard.sln --configuration Release --no-restore
26
27
+ - name: Publish
28
+ run: dotnet publish ./BalanceBoard.sln --configuration Release --no-build
0 commit comments