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 bfedc21Copy full SHA for bfedc21
.github/workflows/powershell-build-extractor.yml
@@ -0,0 +1,32 @@
1
+name: Build PowerShell Extractor
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
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
+ shell: pwsh
22
+ working-directory: powershell
23
+ run: |
24
+ ./build-linux64.ps1 -cliFolder out
25
+ ./build-osx64.ps1 -cliFolder out
26
+ ./build-win64.ps1 -cliFolder out
27
28
+ - name: Upload Build Artifact
29
+ uses: actions/upload-artifact@v4
30
31
+ name: powershell-extractor
32
+ path: powershell/out
0 commit comments