File tree 1 file changed +24
-2
lines changed
1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 34
34
35
35
# repair permissions
36
36
chmod +x ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/macos-arm64/qlt
37
- chmod -R +r ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/macos-arm64
38
-
37
+ chmod -R +r ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/macos-arm64
38
+
39
+ - uses : actions/setup-python@v5
40
+ with :
41
+ python-version : ' 3.11'
42
+
43
+ - name : Build CodeQL Bundle Tool for Packaging
44
+ shell : pwsh
45
+ run : |
46
+ # need this for the bundling to work.
47
+ pip install poetry
48
+ pip install -U pyinstaller
49
+
50
+ # run the packaging
51
+ ./scripts/build_codeql_bundle_dist.ps1 -Version 0.2.0 -WorkDirectory dist -DestinationDirectory ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/macos-arm64/tools/
52
+ env :
53
+ GH_TOKEN : ${{ github.token }}
54
+
55
+
56
+ - name : Build Bundle Archive
57
+ shell : bash
58
+ run : |
59
+ echo "Current Directory $(pwd)"
60
+
39
61
# create bundle
40
62
ARCHIVE="$(pwd)/qlt-macos-arm64.zip"
41
63
pushd ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/macos-arm64
You can’t perform that action at this time.
0 commit comments