Skip to content

Commit 82fa205

Browse files
committed
platform fixes
1 parent 691e818 commit 82fa205

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/internal-build-release-linux64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build
2626
run: dotnet build -c Release --no-restore
2727

28-
- name: Build Bundle (Linux)
28+
- name: Build Bundle
2929
shell: bash
3030
run: |
3131
echo "Current Directory $(pwd)"

.github/workflows/internal-build-release-macos64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build
2525
run: dotnet build -c Release --no-restore
2626

27-
- name: Build Bundle (MacOS)
27+
- name: Build Bundle
2828
shell: bash
2929
run: |
3030
echo "Current Directory $(pwd)"

.github/workflows/internal-build-release-win64.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,14 @@ jobs:
2424
- name: Build
2525
run: dotnet build -c Release --no-restore
2626

27-
- name: Build Bundle (MacOS)
27+
- name: Build Bundle
2828
shell: bash
2929
run: |
3030
echo "Current Directory $(pwd)"
3131
# build the project
32-
dotnet publish ./src/CodeQLToolkit.Core/CodeQLToolkit.Core.csproj /p:PublishProfile=./src/CodeQLToolkit.Core/Properties/PublishProfiles/Windows-x64-Profile.pubxml
32+
dotnet publish ./src/CodeQLToolkit.Core/CodeQLToolkit.Core.csproj /p:PublishProfile=./src/CodeQLToolkit.Core/Properties/PublishProfiles/Windows-x64.pubxml
3333
cp ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/windows-x64/CodeQLToolkit.Core ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/windows-x64/qlt
3434
35-
# repair permissions
36-
chmod +x ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/windows-x64/qlt
37-
chmod +r -R ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/windows-x64
38-
3935
# create bundle
4036
ARCHIVE="$(pwd)/qlt-windows-x64.zip"
4137
pushd ./src/CodeQLToolkit.Core/bin/Release/net6.0/publish/windows-x64

0 commit comments

Comments
 (0)