We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7826c8 commit bb3bb12Copy full SHA for bb3bb12
.github/workflows/apple.yml
@@ -236,9 +236,11 @@ jobs:
236
fi
237
238
for FILENAME in "${RUNNER_TEMP}"/frameworks-ios/*.zip; do
239
+ [ -e "${FILENAME}" ] || continue
240
FRAMEWORK_NAME=$(basename "${FILENAME}" | sed "s/-${VERSION}.zip//")
241
CHECKSUM=$(shasum -a 256 "${FILENAME}" | cut -d ' ' -f1)
242
echo "${FRAMEWORK_NAME} ${CHECKSUM}" >> "${RUNNER_TEMP}/checksums.txt"
243
+ ${AWS_CMD} "${FILENAME}" s3://ossci-ios/executorch/ --acl public-read
244
done
245
- name: Update SwiftPM
246
shell: bash
0 commit comments