Add a Couple New Posts - #75
Open
hisaac wants to merge 2 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces two new blog posts aimed at sharing insights into mobile CI practices and the challenges of building Catalyst apps on CI.
- Adds a blog post on “Tips & Tricks for Mobile CI” with detailed guidance and code examples.
- Adds a blog post on “Difficulties of Building Catalyst Apps on CI” discussing challenges and possible solutions in CI environments.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/content/blog/2025/Tips & Tricks for Mobile CI.md | Introduces a new post with tips on mobile CI, including command runner usage and a shell script for notarizing binaries. |
| src/content/blog/2025/Difficulties of Building Catalyst Apps on CI.md | Adds a new post discussing the unique challenges of building and testing Catalyst apps in CI pipelines. |
Comments suppressed due to low confidence (1)
src/content/blog/2025/Tips & Tricks for Mobile CI.md:187
- The '-p | --profileName' case mistakenly assigns its argument to 'productName' instead of 'profileName'. Update the assignment to correctly set 'profileName'.
-p | --profileName ) shift productName="$1"
| zip -r "product/${productName}.zip" "product/$productName" | ||
|
|
||
| # upload to notary | ||
| xcrun notarytool submit "product/${productName}.zip" -p "$keychainProfileName" |
There was a problem hiding this comment.
The submission command uses 'keychainProfileName', which appears inconsistent with the expected 'profileName'. Consider renaming it for consistency and to avoid potential errors.
Suggested change
| xcrun notarytool submit "product/${productName}.zip" -p "$keychainProfileName" | |
| xcrun notarytool submit "product/${productName}.zip" -p "$profileName" |
Owner
Author
There was a problem hiding this comment.
Thanks! I'll update this locally.
✅ Deploy Preview for hisaac-net ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
hisaac
force-pushed
the
hisaac/new-posts
branch
from
December 1, 2025 17:24
419f3a3 to
5d9b047
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.