We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 214ca2a commit da178b1Copy full SHA for da178b1
.github/workflows/powershell-build-extractor.yml
@@ -0,0 +1,31 @@
1
+name: Build PowerShell Extractor
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
14
+ - name: Set up .NET
15
+ uses: actions/setup-dotnet@v4
16
+ with:
17
+ dotnet-version: '9.0.x'
18
19
+ - name: Build PowerShell Extractor
20
+ shell: pwsh
21
+ working-directory: powershell
22
+ run: |
23
+ ./build-linux64.ps1 -cliFolder out
24
+ ./build-osx64.ps1 -cliFolder out
25
+ ./build-win64.ps1 -cliFolder out
26
27
+ - name: Upload Build Artifact
28
+ uses: actions/upload-artifact@v4
29
30
+ name: powershell-extractor
31
+ path: powershell/out
0 commit comments