| Feature | Labels | Milestone | |---------|--------|------------| | Add train tracks | gameplay , medium | v0.2 | | Implement coin collection | feature , UI | v0.3 | | Fix car collision hitbox | bug , high priority | v0.1.1 |
By [Your Name/Team]
Add leaderboards via a GitLab CI job that calls a REST API, or set up scheduled pipelines to build your game every night. Now go hop across those logs! Have you built a Crossy Road-style game on GitLab? Share your repo or CI/CD tricks in the comments below! crossyroad gitlab
stages: - build variables: UNITY_VERSION: "2022.3.15f1" Share your repo or CI/CD tricks in the comments below
build_webgl: stage: build image: unityci/editor:ubuntu-2022.3.15f1-webgl-1 script: - unity-editor -quit -batchmode -projectPath . -executeMethod BuildScript.PerformWebGLBuild artifacts: paths: - Builds/WebGL/ expire_in: 1 week only: - main crossyroad gitlab