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
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ permissions:
contents: write
issues: write
pull-requests: write
id-token: write

jobs:
release:
Expand All @@ -25,6 +26,10 @@ jobs:
cache: 'npm'
registry-url: 'https://registry.npmjs.org'

# Trusted publishing (OIDC) requires npm >= 11.5.1; runners ship npm 10.x
- name: Upgrade npm
run: npm install -g npm@latest

- name: Install dependencies
run: npm ci

Expand All @@ -37,5 +42,4 @@ jobs:
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"changelogFile": "CHANGELOG.md"
}
],
["@semantic-release/npm", { "npmPublish": false }],
"@semantic-release/npm",
[
"@semantic-release/git",
{
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ A command-line interface for the [Linq](https://linqapp.com) messaging API. Send

## Installation

### npm (cross-platform)

Requires Node.js >= 22.

```bash
npm install -g @linqapp/cli
```

### Homebrew (macOS / Linux)

```bash
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
"url": "https://github.com/linq-team/linq-cli/issues"
},
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
}
}
Loading