Skip to content

Commit 0d0e0d3

Browse files
committed
Test
1 parent d110855 commit 0d0e0d3

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build PowerShell Extractor
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up .NET
16+
uses: actions/setup-dotnet@v4
17+
with:
18+
dotnet-version: '9.0.x'
19+
20+
- name: Build PowerShell Extractor
21+
working-directory: powershell/extractor
22+
run: |
23+
dotnet publish -r linux-x64 -c Release --self-contained
24+
ls
25+
26+
- name: Upload Build Artifact
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: powershell-extractor
30+
path: powershell/extractor/bin/Release/

0 commit comments

Comments
 (0)