Skip to content

Commit

Permalink
Tip 223
Browse files Browse the repository at this point in the history
  • Loading branch information
bizz84 committed Jan 16, 2025
1 parent b218300 commit 147b4dc
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ This repo now has a companion app! [Download it here](https://fluttertips.dev/)
| ID | View on GitHub (this repo) | X Post | LinkedIn Post | Bluesky Post | Link on [codewithandrea.com](https://codewithandrea.com/) |
| -- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| ------ | ------------- | ------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
| 222 | [Move Declaration to File (VSCode assist)](tips/0222-move-to-file-vscode-assist/index.md) | [link](https://x.com/biz84/status/1876983674735849540) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-with-vscode-you-can-easily-activity-7282749783033741314-qVCu) | [link](https://bsky.app/profile/codewithandrea.com/post/3lfabcatbhs2r) |
| 221 | [Using Stack and FractionallySizedBox](tips/0221-stack-fractionally-sized-box/index.md) | [link](https://x.com/biz84/status/1876564889537311226) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-flutter-offers-many-ways-to-activity-7282330843241447426-cDRF) | [link](https://bsky.app/profile/codewithandrea.com/post/3lf5eby24zc2r) |
| 223 | [SSH Access on Codemagic Builds](tips/0223-ssh-access-codemagic/index.md) | [link](https://x.com/biz84/status/1879922615026151473) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-if-your-codemagic-builds-are-activity-7285688423271530496-XY0x) | [link](https://bsky.app/profile/codewithandrea.com/post/3lfunvdmhjc2w) | |
| 222 | [Move Declaration to File (VSCode assist)](tips/0222-move-to-file-vscode-assist/index.md) | [link](https://x.com/biz84/status/1876983674735849540) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-with-vscode-you-can-easily-activity-7282749783033741314-qVCu) | [link](https://bsky.app/profile/codewithandrea.com/post/3lfabcatbhs2r) | |
| 221 | [Using Stack and FractionallySizedBox](tips/0221-stack-fractionally-sized-box/index.md) | [link](https://x.com/biz84/status/1876564889537311226) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-flutter-offers-many-ways-to-activity-7282330843241447426-cDRF) | [link](https://bsky.app/profile/codewithandrea.com/post/3lf5eby24zc2r) | |
| 220 | [The ListWheelScrollView Widget](tips/0220-list-wheel-scroll-view/index.md) | [link](https://x.com/biz84/status/1870061289114087814) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-if-you-need-to-select-between-activity-7275827511219945472-cYEH) | [link](https://bsky.app/profile/codewithandrea.com/post/3ldqaaejlx22e) | |
| 219 | [Color API Deprecations in Flutter 3.27](tips/0219-color-deprecations-flutter-3.27/index.md) | [link](https://x.com/biz84/status/1869357562979893444) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-to-support-the-latest-wide-activity-7275123561881645057-LsKH) | [link](https://bsky.app/profile/codewithandrea.com/post/3ldldwzh6l22f) | |
| 218 | [Text Style with Tabular Figures](tips/0218-text-style-tabular-figures/index.md) | [link](https://x.com/biz84/status/1868692579648487611) | [link](https://www.linkedin.com/posts/andreabizzotto_did-you-know-if-you-want-to-render-fixed-activity-7274458459914350593-YkSx) | [link](https://bsky.app/profile/codewithandrea.com/post/3ldgqe64qzs24) | |
Expand Down
2 changes: 1 addition & 1 deletion tips/0222-move-to-file-vscode-assist/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class VectorIcon extends StatelessWidget {

| Previous | Next |
| -------- | ---- |
| [Using Stack and FractionallySizedBox](../0221-stack-fractionally-sized-box/index.md) | |
| [Using Stack and FractionallySizedBox](../0221-stack-fractionally-sized-box/index.md) | [SSH Access on Codemagic Builds](../0223-ssh-access-codemagic/index.md) |


<!-- TWITTER|https://x.com/biz84/status/1876983674735849540 -->
Expand Down
Binary file added tips/0223-ssh-access-codemagic/223.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions tips/0223-ssh-access-codemagic/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# SSH Access on Codemagic Builds

Did you know?

If your Codemagic builds are failing and you can't figure out why, you can enable SSH access. 🔑

Use this to login to the build runner, where you can inspect the environment variables and project files, and see if something is missing. 💡

![](223.png)

<!--
Failing builds on Codemagic? Here's what to do:
1. Enable SSH/VNC access on your next build
2. Open the Explore panel and run the SSH command in your terminal
3. You now have access to the build runner and can use it to explore environment variables, local files, etc.
This way, you can check if something is missing or wasn't configured correctly in your workflow. 🎯
-->

---

I just added a whole module about CI/CD automation with Codemagic to my Flutter in Production course.

If you want to check it out, here's the intro:

- [Introduction to CI/CD](https://pro.codewithandrea.com/flutter-in-production/11-codemagic/01-intro)

---

| Previous | Next |
| -------- | ---- |
| [Move Declaration to File (VSCode assist)](../0222-move-to-file-vscode-assist/index.md) | |


<!-- TWITTER|https://x.com/biz84/status/1879922615026151473 -->
<!-- LINKEDIN|https://www.linkedin.com/posts/andreabizzotto_did-you-know-if-your-codemagic-builds-are-activity-7285688423271530496-XY0x -->
<!-- BLUESKY|https://bsky.app/profile/codewithandrea.com/post/3lfunvdmhjc2w -->

0 comments on commit 147b4dc

Please sign in to comment.