Skip to content

Commit 99e9ba3

Browse files
committed
home: Add empty-state illustrations and org icon
Use null-aware element in placeholder children Add leading and trailing support to empty content placeholder Add workflow to fix iOS build files
1 parent fbaa59e commit 99e9ba3

13 files changed

Lines changed: 184 additions & 6 deletions
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Fix iOS Build Files
2+
3+
on:
4+
workflow_dispatch: # Manual trigger from GitHub UI
5+
6+
jobs:
7+
fix-ios:
8+
runs-on: macos-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
ref: ${{ github.head_ref }} # Check out the current branch
13+
14+
- name: Setup Flutter
15+
run: |
16+
git clone https://github.com/flutter/flutter.git --depth 1 -b stable ~/flutter
17+
echo "$HOME/flutter/bin" >> $GITHUB_PATH
18+
19+
- name: Download dependencies
20+
run: flutter pub get
21+
22+
- name: Build iOS (config-only to generate files)
23+
run: flutter build ios --config-only
24+
25+
- name: Build macOS (config-only)
26+
run: flutter build macos --config-only
27+
28+
- name: Check for changes
29+
run: git diff ios/ macos/
30+
31+
- name: Commit and push changes
32+
run: |
33+
git config --local user.email "action@github.com"
34+
git config --local user.name "GitHub Action"
35+
git add ios/ macos/
36+
if ! git diff-index --quiet HEAD --; then
37+
git commit -m "ci: Update iOS/macOS build generated files"
38+
git push
39+
else
40+
echo "No changes to commit"
41+
fi

assets/images/dm-arrow.svg

Lines changed: 3 additions & 0 deletions
Loading

assets/images/empty-channel.svg

Lines changed: 7 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)