Skip to content

Commit eac4442

Browse files
committed
Wrong syntax for env vars.
1 parent 254b9f7 commit eac4442

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/apple.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,15 +182,15 @@ jobs:
182182
mkdir -p package
183183
productbuild --sign "$APPLE_CODE_SIGN_IDENTITY_INST" \
184184
--component build-macOS-latest/Frameworks/lsl.framework \
185-
/Library/Frameworks package/liblsl-${LSL_VERSION}-Darwin-universal.pkg
185+
/Library/Frameworks package/liblsl-$LSL_VERSION-Darwin-universal.pkg
186186
# Notarize the package
187-
xcrun notarytool submit package/liblsl-${LSL_VERSION}-Darwin-universal.pkg \
187+
xcrun notarytool submit package/liblsl-$LSL_VERSION-Darwin-universal.pkg \
188188
--apple-id "$APPLE_NOTARIZE_USERNAME" \
189189
--password "$APPLE_NOTARIZE_PASSWORD" \
190190
--team-id "$APPLE_DEVELOPMENT_TEAM" \
191191
--wait --verbose
192192
# Staple the notarization ticket to the package
193-
xcrun stapler staple package/liblsl-${LSL_VERSION}-Darwin-universal.pkg
193+
xcrun stapler staple package/liblsl-$LSL_VERSION-Darwin-universal.pkg
194194
195195
# If notarization fails, you can get the history of notarization requests:
196196
# xcrun notarytool history --apple-id "$APPLE_NOTARIZE_USERNAME" --password "$APPLE_NOTARIZE_PASSWORD" --team-id "$APPLE_DEVELOPMENT_TEAM"
@@ -212,7 +212,7 @@ jobs:
212212
echo "✅ Verifying binary signatures in XCFramework..."
213213
codesign -vvv --verify --deep --strict lsl.xcframework
214214
215-
ditto -c -k --sequesterRsrc --keepParent lsl.xcframework lsl.xcframework.${LSL_VERSION}.zip
215+
ditto -c -k --sequesterRsrc --keepParent lsl.xcframework lsl.xcframework.$LSL_VERSION.zip
216216
217217
- name: upload artifacts
218218
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)