Skip to content

Commit 4c7b2ba

Browse files
committed
Fix VULKAN_SDK env var
1 parent 575d0d7 commit 4c7b2ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ jobs:
234234
# This is just to tell the Vulkan install script where to install.
235235
# NOTE: Hardcoded $HOME expansion, due to 'env' context being unavailble in env:
236236
VULKAN_INSTALL_DIR: /Users/runner/VulkanSDK/${{ matrix.options.vk_sdk_ver }}
237-
VULKAN_SDK: /Users/runner/VulkanSDK/${{ matrix.options.vk_sdk_ver }}/macOS
237+
VULKAN_SDK: /Users/runner/VulkanSDK/${{ matrix.vk_sdk_ver }}/macOS
238238

239239
steps:
240240
- uses: actions/checkout@v4
@@ -358,10 +358,10 @@ jobs:
358358
if [ "$CHECK_REUSE" != "ONLY" -a "$CHECK_MKVK" != "ONLY" ]; then
359359
if [ "$PLATFORM" = "macOS" ]; then
360360
./scripts/build_macos.sh
361+
./scripts/notarize.sh $BUILD_DIR/KTX-Software-*.pkg $APPLE_ID $DEVELOPMENT_TEAM $ALTOOL_PASSWORD && export NOTARIZED="true"
361362
else
362363
./scripts/build_ios.sh
363364
fi
364-
./scripts/notarize.sh $BUILD_DIR/KTX-Software-*.pkg $APPLE_ID $DEVELOPMENT_TEAM $ALTOOL_PASSWORD && export NOTARIZED="true"
365365
fi
366366
;;
367367
esac

0 commit comments

Comments
 (0)