Skip to content

Commit

Permalink
platform=x64
Browse files Browse the repository at this point in the history
  • Loading branch information
brondavies committed Nov 5, 2024
1 parent 694b488 commit 3ab825e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ jobs:
matrix:
include:
- language: csharp
build-mode: autobuild
build-mode: manual
ArchList: x64
Architecture: x64
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
Expand Down Expand Up @@ -77,12 +78,8 @@ jobs:
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- if: matrix.build-mode == 'manual'
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1
cd src\TrayToolbar
msbuild TrayToolbar.sln /p:Configuration=Release /p:Platform=x64
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:

strategy:
matrix:
configuration: [Debug, Release]
configuration: [Release]

runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

env:
Solution_Name: src/TrayToolbar/TrayToolbar.sln
Test_Project_Path:
Platform: x64
Wap_Project_Directory: src/TrayToolbar/
Wap_Project_Path: src/TrayToolbar/TrayToolbar.csproj

Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
run: msbuild $env:Wap_Project_Path /p:Configuration=$env:Configuration /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:PackageCertificatePassword=${{ secrets.Pfx_Key }}
env:
Appx_Bundle: Always
Appx_Bundle_Platforms: x86|x64
Appx_Bundle_Platforms: x64
Appx_Package_Build_Mode: StoreUpload
Configuration: ${{ matrix.configuration }}

Expand Down

0 comments on commit 3ab825e

Please sign in to comment.