callstackincubator/agent-skills · Official

github-actions

GitHub Actions workflow patterns for React Native iOS simulator and Android emulator cloud builds with downloadable artifacts. Use when setting up CI build pipelines or downloading GitHub Actions artifacts via gh CLI and GitHub API.

All-time #1953 Trending #1371 Hot #3750 First seen Mar 5, 2026
8-week activity · all time api

Installation

$ npx skills add callstackincubator/agent-skills --skill github-actions

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from callstackincubator/agent-skills · top by installs.

npx skills add callstackincubator/agent-skills

Browse all from callstackincubator/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1.6K
License LICENSE
Default branch main
Open issues 5
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,812 B
  • docs SUMMARY.md 251 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 8,000 installs

Videos

Tutorials, guides, and showcases specifically about this skill.

SKILL.md

GitHub Actions Build Artifacts

Overview

Reusable GitHub Actions patterns to build React Native apps for iOS simulators and Android emulators in the cloud, then publish artifacts retrievable via gh CLI or GitHub API.

When to Apply

Use this skill when:

  • Creating CI workflows that build React Native simulator/emulator artifacts.
  • Uploading iOS simulator and Android emulator installables from PRs or manual dispatch runs.
  • Replacing local-only mobile builds with downloadable CI artifacts.
  • Needing stable artifact IDs/names for scripted retrieval with gh or REST API.

Quick Reference

  1. Add composite actions from [gha-ios-composite-action.md][gha-ios-composite-action] and [gha-android-composite-action.md][gha-android-composite-action].
  2. Wire them into .github/workflows/mobile-build.yml from [gha-workflow-and-downloads.md][gha-workflow-and-downloads].
  3. Upload with actions/upload-artifact@v4 and capture artifact-id output.
  4. Download with gh run download or GET /repos/{owner}/{repo}/actions/artifacts/{artifactid}/{archiveformat}.

References

File Description
[gha-ios-composite-action.md][gha-ios-composite-action] Composite action.yml for iOS simulator .app.tar.gz builds and artifact upload
[gha-android-composite-action.md][gha-android-composite-action] Composite action.yml for Android emulator .apk builds and artifact upload
[gha-workflow-and-downloads.md][gha-workflow-and-downloads] End-to-end workflow wiring plus gh and REST download commands

Problem -> Skill Mapping

Problem Start With
Need CI iOS simulator .app.tar.gz artifact [gha-ios-composite-action.md][gha-ios-composite-action]
Need CI Android emulator .apk artifact [gha-android-composite-action.md][gha-android-composite-action]
Need one workflow to trigger both platform jobs [gha-workflow-and-downloads.md][gha-workflow-and-downloads]
Need scripted artifact download [gha-workflow-and-downloads.md][gha-workflow-and-downloads]

Source Inspiration

[gha-ios-composite-action]: references/gha-ios-composite-action.md [gha-android-composite-action]: references/gha-android-composite-action.md [gha-workflow-and-downloads]: references/gha-workflow-and-downloads.md