# Minecraft CI Release

> Fixture with valid multiline flow collections in workflow YAML.

- Skill: `jahrome907/minecraft-ci-release-3` (Agent Skill)
- Install (CLI): `npx skillmds@latest add jahrome907/minecraft-ci-release-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jahrome907/minecraft-ci-release-3/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: Jahrome907 (https://skillmd.com/u/jahrome907)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jahrome907/minecraft-ci-release-3

---


# Multiline Flow Fixture

## Required Secrets

- `MODRINTH_TOKEN`

```yaml
name: Matrix Build
on:
  push:
    branches: ["main"]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - { platform: fabric, dir: fabric }
          - { platform: neoforge, dir: neoforge }
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - env:
          MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
        run: "./gradlew :${{ matrix.dir }}:build --no-daemon"
```

