Fix formatting and macOS CI build uploads

Don't show in changelog
This commit is contained in:
Florian Rival
2025-06-24 09:47:54 +02:00
parent 40b6a34dc5
commit 00376f39d5
2 changed files with 21 additions and 8 deletions

View File

@@ -94,25 +94,29 @@ jobs:
name: Deploy to S3 (specific commit)
command: |
export PATH=~/.local/bin:$PATH
for i in 1 2 3; do
for i in 1 2 3 4 5 6 7; do
aws s3 sync newIDE/electron-app/dist s3://gdevelop-releases/$(git rev-parse --abbrev-ref HEAD)/commit/$(git rev-parse HEAD)/ && break
echo "Retry $i failed... retrying in 10 seconds"
sleep 10
done
echo "All retries for deployment failed!" >&2
exit 1
if [ $i -eq 7 ]; then
echo "All retries for deployment failed!" >&2
exit 1
fi
- run:
name: Deploy to S3 (latest)
command: |
export PATH=~/.local/bin:$PATH
for i in 1 2 3; do
for i in 1 2 3 4 5 6 7; do
aws s3 sync newIDE/electron-app/dist s3://gdevelop-releases/$(git rev-parse --abbrev-ref HEAD)/latest/ && break
echo "Retry $i failed... retrying in 10 seconds"
sleep 10
done
echo "All retries for deployment failed!" >&2
exit 1
if [ $i -eq 7 ]; then
echo "All retries for deployment failed!" >&2
exit 1
fi
# Build the app for Linux (using a pre-built GDevelop.js library).
build-linux:

View File

@@ -142,7 +142,11 @@ export const FunctionCallRow = React.memo<Props>(function FunctionCallRow({
)}
</div>
</Tooltip>
<ResponsiveLineStackLayout justifyContent="space-between" expand noOverflowParent>
<ResponsiveLineStackLayout
justifyContent="space-between"
expand
noOverflowParent
>
<LineStackLayout noMargin alignItems="baseline">
<Text>{text || 'Working...'}</Text>
{hasDetailsToShow && (
@@ -172,7 +176,12 @@ export const FunctionCallRow = React.memo<Props>(function FunctionCallRow({
</Text>
)}
</LineStackLayout>
<LineStackLayout noMargin alignItems="baseline" justifyContent="flex-end" neverShrink>
<LineStackLayout
noMargin
alignItems="baseline"
justifyContent="flex-end"
neverShrink
>
{!isFinished && !isWorking && (
<FlatButtonWithSplitMenu
primary