Upload .dSYM file in CI

This commit is contained in:
Jarred Sumner
2024-07-10 23:04:06 -07:00
parent bf4c2caa11
commit 0098678a1d

View File

@@ -276,6 +276,9 @@ jobs:
chmod +x bun-profile bun
mkdir -p bun-${{ inputs.tag }}-profile/ bun-${{ inputs.tag }}/
mv bun-profile bun-${{ inputs.tag }}-profile/bun-profile
if [ -f bun.dSYM ]; then
mv bun.dSYM bun-${{ inputs.tag }}-profile/bun.dSYM
fi
mv bun bun-${{ inputs.tag }}/bun
zip -r bun-${{ inputs.tag }}-profile.zip bun-${{ inputs.tag }}-profile
zip -r bun-${{ inputs.tag }}.zip bun-${{ inputs.tag }}