We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faafcd6 commit cc71ee6Copy full SHA for cc71ee6
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,29 @@
1
+name: Build Plugin
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v3
13
14
+ - name: Setup .NET
15
+ uses: actions/setup-dotnet@v3
16
+ with:
17
+ dotnet-version: 8.0.x
18
19
+ - name: Restore dependencies
20
+ run: dotnet restore
21
22
+ - name: Build
23
+ run: dotnet build --configuration Release --no-restore
24
25
+ - name: Publish Artifact
26
+ uses: actions/upload-artifact@v4
27
28
+ name: TrailerFinPlugin
29
+ path: bin/Release/net8.0/*.dll
0 commit comments