Skip to content

Commit 30bd4af

Browse files
committed
TODO
1 parent 214ca2a commit 30bd4af

File tree

1 file changed

+32
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)