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
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ steps:
| `include_paths` | No | | Filter commits by file paths (comma-separated globs for monorepos) |
| `log_level` | No | | Log verbosity: `quiet` or `verbose`. Omit for default output. |
| `timeout` | No | `60` | Maximum time in seconds to wait for the command to complete |
| `cli_version` | No | `latest` | Linear Release CLI version tag to install |

`cli_version` defaults to `latest`, so the action automatically uses the newest CLI release. For reproducible builds, pin an exact tag (for example, `v0.5.0`). If stability is more important than automatic updates, prefer a pinned version.
| `cli_version` | No | `v0.6.4` | Linear Release CLI version to install |

## Outputs

Expand Down Expand Up @@ -144,6 +142,10 @@ Filter commits by file paths to track releases for specific packages, useful for
include_paths: apps/web/**,packages/shared/**
```

## Versioning

Each release of this action defaults to a specific [Linear Release CLI](https://github.com/linear/linear-release) version. Pinning the action — whether by tag (`@v0`) or commit SHA — also pins the CLI. Set `cli_version` to override.

## Troubleshooting

**"Unsupported OS" or "Unsupported arch" error**
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ inputs:
description: Maximum time in seconds to wait for the command to complete. Defaults to 60.
required: false
cli_version:
description: Linear Release CLI version to install (e.g., "v0.5.0" or "latest").
description: Linear Release CLI version to install (e.g., "v0.6.4"). Set to "latest" to always use the newest CLI.
required: false
default: latest
default: v0.6.4

outputs:
release-id:
Expand Down
Loading