Skip to content

Commit cc71ee6

Browse files
committed
TrailerFinPlugin
1 parent faafcd6 commit cc71ee6

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
28+
name: TrailerFinPlugin
29+
path: bin/Release/net8.0/*.dll

0 commit comments

Comments
 (0)