File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,31 @@ jobs:
27
27
- name : Build Bundle
28
28
shell : pwsh
29
29
run : |
30
- echo "Current Directory $(pwd )"
30
+ echo "Current Directory $(Get-Location )"
31
31
# build the project
32
32
dotnet publish .\src\CodeQLToolkit.Core\CodeQLToolkit.Core.csproj /p:PublishProfile=.\src\CodeQLToolkit.Core\Properties\PublishProfiles\Windows-x64.pubxml
33
33
Copy-Item .\src\CodeQLToolkit.Core\bin\Release\net6.0\publish\windows-x64\CodeQLToolkit.Core.exe .\src\CodeQLToolkit.Core\bin\Release\net6.0\publish\windows-x64\qlt.exe
34
34
35
+
36
+ - uses : actions/setup-python@v5
37
+ with :
38
+ python-version : ' 3.11'
39
+
40
+ - name : Build CodeQL Bundle Tool for Packaging
41
+ shell : pwsh
42
+ run : |
43
+ # need this for the bundling to work.
44
+ pip install poetry
45
+ pip install -U pyinstaller
46
+
47
+ # run the packaging
48
+ .\scripts\build_codeql_bundle_dist.ps1 -Version 0.2.0 -WorkDirectory dist -DestinationDirectory .\src\CodeQLToolkit.Core\bin\Release\net6.0\publish\windows-x64\tools\
49
+ env :
50
+ GH_TOKEN : ${{ github.token }}
51
+
52
+ - name : Build Bundle Archive
53
+ shell : pwsh
54
+ run : |
35
55
# create bundle
36
56
$ARCHIVE="$(Get-Location)/qlt-windows-x64.zip"
37
57
Push-Location .\src\CodeQLToolkit.Core\bin\Release\net6.0\publish\windows-x64
You can’t perform that action at this time.
0 commit comments