Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ios_emerge_upload_snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,20 @@ jobs:
run: gem install xcpretty emerge
- name: Setup gems
run: exec ../.github/scripts/ios/setup.sh
- name: Cache SPM packages
uses: actions/cache@v4
with:
path: ~/Library/Caches/org.swift.swiftpm
key: ${{ runner.os }}-spm-${{ hashFiles('ios/**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Cache DerivedData
uses: actions/cache@v4
with:
path: ~/Library/Developer/Xcode/DerivedData
key: ${{ runner.os }}-deriveddata-snapshot-${{ hashFiles('ios/**/Package.resolved', 'ios/**/*.swift') }}
restore-keys: |
${{ runner.os }}-deriveddata-snapshot-
- name: Set up App Store Connect API Key
run: |
ABSOLUTE_KEY_PATH="$(pwd)/app_store_key.p8"
Expand Down
4 changes: 2 additions & 2 deletions ios/HackerNews/Stories/StoryRow.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Story.swift
// Story.sssswift
// Hacker News
//
// Created by Ryan Brooks on 6/21/23.
Expand Down Expand Up @@ -107,7 +107,7 @@ struct StoryRowLoadingState: View {
.font(theme.themedFont(size: 12, style: .mono, weight: .bold))
.foregroundColor(.hnOrange)
.redacted(reason: .placeholder)
Text("Some Short Title")
Text("Some Short Titleeeee")
.font(theme.themedFont(size: 16, style: .mono, weight: .bold))
.redacted(reason: .placeholder)
HStack(spacing: 16) {
Expand Down
Loading