From 6eab2b651ae18a90fc5bd7273f2433290eeb7119 Mon Sep 17 00:00:00 2001 From: Andrzej Fiedukowicz Date: Fri, 19 Jan 2024 15:47:42 +0100 Subject: [PATCH] Wip --- .github/workflows/bcny-release.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bcny-release.yml b/.github/workflows/bcny-release.yml index 875f620f3b..733a1ee74e 100644 --- a/.github/workflows/bcny-release.yml +++ b/.github/workflows/bcny-release.yml @@ -15,14 +15,12 @@ jobs: matrix: include: - arch: 'amd64' + platform: 'x64' - arch: 'arm64' + platform: 'arm64' steps: - - name: Checkout the latest code - uses: actions/checkout@v4.1.1 - with: - token: ${{ secrets.BOT_GITHUB_TOKEN }} - fetch-depth: 0 + - uses: actions/checkout@v4 - uses: compnerd/gha-setup-vsdevenv@main with: @@ -38,15 +36,15 @@ jobs: - name: Build StaticRelease run: - msbuild .\builds\msvc\vs2022\libsodium.sln /p:Configuration=StaticRelease /p:Platform=${{ matrix.arch }} + msbuild .\builds\msvc\vs2022\libsodium.sln /p:Configuration=StaticRelease /p:Platform=${{ matrix.platform }} - name: Build DynRelease run: - msbuild .\builds\msvc\vs2022\libsodium.sln /p:Configuration=DynRelease /p:Platform=${{ matrix.arch }} + msbuild .\builds\msvc\vs2022\libsodium.sln /p:Configuration=DynRelease /p:Platform=${{ matrix.platform }} - name: Build LtcgRelease run: - msbuild .\builds\msvc\vs2022\libsodium.sln /p:Configuration=LtcgRelease /p:Platform=${{ matrix.arch }} + msbuild .\builds\msvc\vs2022\libsodium.sln /p:Configuration=LtcgRelease /p:Platform=${{ matrix.platform }} # - name: Package firebase-cpp-sdk # run: |