Skip to content

Commit da178b1

Browse files
committed
Add a workflow for generating a PowerShell extractor.
1 parent 214ca2a commit da178b1

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
30+
name: powershell-extractor
31+
path: powershell/out

0 commit comments

Comments
 (0)