Skip to content

Quickstart

Astrid Avalin Soerensen edited this page May 10, 2025 · 16 revisions

πŸš€ Overview

This guide introduces the key workflows you’ll use in Unity-CI-Templates.


πŸš€ Getting Started

1️⃣ Ensure your Unity project is in a GitHub repository
2️⃣ Copy the required GitHub Actions workflows from the CICD_Workflows folder
3️⃣ Add them to your repository at path: .github β†’ workflows (create folders if missing)
4️⃣ Configure the required secrets and optional repository variables
5️⃣ Review the wiki pages here to understand versioning, deployment, and customization 5️⃣ Try dispatching the ci-cd-dispatcher.yml workflow or push a Git tag using semver to see the pipeline in action!


πŸš€ Main Workflows

Stage Purpose
Dispatcher Entry point for triggering builds (manual or auto triggers)
CI/CD Pipeline Main workflow that runs tests, builds, releases, deploys, notifies
Redeployer Redeploys artifacts from an existing GitHub Release
Step Workflows Modular workflow_call templates for each stage

πŸš€ The Five CI/CD Steps

Step What it does
πŸ“‹ Step 1 - Test Runs EditMode + PlayMode Unity tests and summarizes results
🧩 Step 2 - Build Builds Unity project for multiple platforms (matrix builds)
πŸ“¦ Step 3 - Release Uploads artifacts to GitHub Releases (if using release-type)
🌍 Step 4 - Deploy Deploys to targets like GitHub Pages, itch.io, Firebase, S3, Steam
πŸ“£ Step 5 - Notify Sends notifications to Slack, Discord, and writes summaries

πŸ“ Architecture Overview

[ Dispatcher ]
    ↓
[ Metadata Preparation ]
    ↓
[ CI/CD Pipeline ]
    β”œβ”€β”€ πŸ§ͺ Tests (EditMode + PlayMode)
    β”œβ”€β”€ πŸ› οΈ Build (matrix by platform)
    β”œβ”€β”€ πŸ“¦ Release (GitHub Releases for tags/RCs)
    β”œβ”€β”€ 🌍 Deploy (gh-pages, itch.io, etc.)
    └── πŸ”” Notify (Discord, Slack)
Clone this wiki locally