We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d110855 commit 832cf37Copy full SHA for 832cf37
1 file changed
.github/workflows/powershell-build-extractor.yml
@@ -0,0 +1,28 @@
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: '8.0.x'
19
20
+ - name: Build PowerShell Extractor
21
+ working-directory: extractor/powershell
22
+ run: dotnet publish -r linux-x64 -c Release --self-contained
23
24
+ - name: Upload Build Artifact
25
+ uses: actions/upload-artifact@v4
26
27
+ name: powershell-extractor
28
+ path: powershell/extractor/bin/Release/
0 commit comments