Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/content/docs/guide/gh-aw.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Set a repository variable to control which Squad CLI version the workflow uses:

| Variable | Purpose | Default |
|----------|---------|---------|
| `SQUAD_CLI_VERSION` | Squad CLI version to install during activation | `0.11.0` |
| `SQUAD_CLI_VERSION` | Squad CLI version to install during activation | `0.12.0` |

Set it in **Settings → Secrets and variables → Actions → Variables**.

Expand Down
6 changes: 3 additions & 3 deletions workflows/shared/squad.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#
# Optional custom Squad CLI version:
# vars.SQUAD_CLI_VERSION
# Default is 0.11.0.
# Default is 0.12.0.
#
# Optional model override:
# vars.SQUAD_MODEL
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Initialize Squad team
env:
SQUAD_CLI_VERSION: ${{ vars.SQUAD_CLI_VERSION || '0.11.0' }}
SQUAD_CLI_VERSION: ${{ vars.SQUAD_CLI_VERSION || '0.12.0' }}
GH_TOKEN: ${{ steps.squad-app-token.outputs.token || secrets.SQUAD_GITHUB_TOKEN || github.token }}
run: |
# Preserve committed cast state: if .squad/team.md already exists with
Expand All @@ -87,7 +87,7 @@ jobs:
echo "✓ Existing squad team detected with roster entries — skipping init."
else
echo "No existing squad team found — running squad init."
npx --yes "@bradygaster/squad-cli@${SQUAD_CLI_VERSION:-0.11.0}" init --preset default --state-backend local
npx --yes "@bradygaster/squad-cli@${SQUAD_CLI_VERSION:-0.12.0}" init --preset default --state-backend local
fi

- name: Upload Squad state artifact
Expand Down