Skip to content

Commit 48435c7

Browse files
committed
TODO
1 parent 214ca2a commit 48435c7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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/extractor
23+
run: ./build-linux64.ps1 -cliFolder out
24+
25+
- name: Upload Build Artifact
26+
uses: actions/upload-artifact@v4
27+
with:
28+
name: powershell-extractor
29+
path: powershell/extractor/out

0 commit comments

Comments
 (0)