> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# circleci/linear

Integrate Linear Releases into your CircleCI pipeline. Automatically tracks which issues ship with each deployment.


## Commands

### sync

Sync the current deployment to a Linear release pipeline

| Parameter | Type | Default | Description |
|---|---|---|---|
| `version` | string |  | Unique version identifier for this release (e.g. git tag, pipeline ID, semantic version) |

## Examples

### example

Sync your deployment to a Linear release pipeline after deploying.


```yaml
version: '2.1'
orbs:
  linear: circleci/linear@1.0.0
jobs:
  deploy:
    docker:
      - image: cimg/base:current
    steps:
      - checkout
      - run: ./deploy.sh
      - linear/sync
workflows:
  deploy:
    jobs:
      - deploy
```