mirror of
https://github.com/supabase/setup-cli.git
synced 2026-06-28 01:46:58 +00:00
## Summary - Detect Linux musl runners in the v1 action and download the Supabase CLI `.apk` asset for CLI versions `>= 2.99.0`. - Add the extracted `usr/bin` directory to `PATH` for `.apk` archives. - Backport the optional `github-token` input for authenticated `latest` release lookup, because the test matrix hit unauthenticated GitHub API rate limits. - Rebuild `dist/index.js` for the Node action. ## Validation - `npm run format:check` - `npm run lint` - `npm test` - `npm run package` - Local Docker smoke test in `node:20-alpine` with `INPUT_VERSION=2.100.1` - setup-cli-testing workflow: https://github.com/jgoux/setup-cli-testing/actions/runs/26165593808 The external workflow passed Alpine `2.100.1`, Alpine `latest`, and Ubuntu/macOS/Windows with both `2.100.1` and `latest`.
20 lines
508 B
YAML
20 lines
508 B
YAML
name: Supabase CLI Action
|
|
description: Setup Supabase CLI, supabase, on GitHub Actions runners
|
|
author: Supabase
|
|
inputs:
|
|
version:
|
|
description: Version of Supabase CLI to install
|
|
required: false
|
|
default: 2.20.3
|
|
github-token:
|
|
description:
|
|
GitHub token used to resolve the latest Supabase CLI release without
|
|
hitting unauthenticated API limits.
|
|
required: false
|
|
outputs:
|
|
version:
|
|
description: Version of installed Supabase CLI
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|