From 0672603755fa9beeb543831a2aadd67fe6bd9a4c Mon Sep 17 00:00:00 2001 From: Zach H Date: Fri, 8 May 2026 09:53:33 -0400 Subject: [PATCH] Support spaces in release name (#6849) --- .github/workflows/desktop-build.yml | 10 +++++----- vcpkg | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 39af88b5d..9eb81c007 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -261,7 +261,7 @@ jobs: shell: bash env: GH_TOKEN: ${{github.token}} - run: gh attestation verify ${{steps.build.outputs.path}} --repo Cockatrice/Cockatrice + run: gh attestation verify "${{steps.build.outputs.path}}" --repo Cockatrice/Cockatrice build-vcpkg: strategy: @@ -490,7 +490,7 @@ jobs: if [[ -n "$MACOS_CERTIFICATE_NAME" ]] then security unlock-keychain -p "$MACOS_CI_KEYCHAIN_PWD" build.keychain - /usr/bin/codesign --sign="$MACOS_CERTIFICATE_NAME" --entitlements=".ci/macos.entitlements" --options=runtime --force --deep --timestamp --verbose ${{steps.build.outputs.path}} + /usr/bin/codesign --sign="$MACOS_CERTIFICATE_NAME" --entitlements=".ci/macos.entitlements" --options=runtime --force --deep --timestamp --verbose "${{steps.build.outputs.path}}" fi - name: Notarize app bundle @@ -510,7 +510,7 @@ jobs: # Therefore, we create a zip file containing our app bundle, so that we can send it to the # notarization service echo "Creating temp notarization archive" - ditto -c -k --keepParent ${{steps.build.outputs.path}} "notarization.zip" + ditto -c -k --keepParent "${{steps.build.outputs.path}}" "notarization.zip" # Here we send the notarization request to the Apple's Notarization service, waiting for the result. # This typically takes a few seconds inside a CI environment, but it might take more depending on the App @@ -522,7 +522,7 @@ jobs: # Finally, we need to "attach the staple" to our executable, which will allow our app to be # validated by macOS even when an internet connection is not available. echo "Attach staple" - xcrun stapler staple ${{steps.build.outputs.path}} + xcrun stapler staple "${{steps.build.outputs.path}}" fi - name: Upload artifact @@ -569,4 +569,4 @@ jobs: shell: bash env: GH_TOKEN: ${{github.token}} - run: gh attestation verify ${{steps.build.outputs.path}} --repo Cockatrice/Cockatrice + run: gh attestation verify "${{steps.build.outputs.path}}" --repo Cockatrice/Cockatrice diff --git a/vcpkg b/vcpkg index 74e653621..d29e8309d 160000 --- a/vcpkg +++ b/vcpkg @@ -1 +1 @@ -Subproject commit 74e6536215718009aae747d86d84b78376bf9e09 +Subproject commit d29e8309d1cf7a7cb6998a935b2ac5b1958a7432