Skip to content
Open
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
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main

permissions:
id-token: write # Required for OIDC/Trusted Publishing
contents: write
Comment thread
mosabua marked this conversation as resolved.

jobs:
Expand Down Expand Up @@ -39,11 +40,9 @@ jobs:
with:
node-version: '24' # Use latest LTS version
registry-url: https://registry.npmjs.org

scope: '@trinodb'
- if: steps.version.outputs.changed == 'true'
run: |
npm ci
npm run build
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
npm publish --access public
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ See details in the [demo animation](./demos.gif).
## Installation

```shell
npm install trino-query-ui
npm install @trinodb/trino-query-ui
```

## Quick start
Expand Down
5 changes: 4 additions & 1 deletion precise/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "trino-query-ui",
"name": "@trinodb/trino-query-ui",
"description": "Trino Query Editor react component",
"version": "0.1.2",
"author": {
"name": "Trino contributors",
"email": "general@trino.io",
"url": "https://github.com/trinodb/trino-query-ui/graphs/contributors"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"trino",
"trinodb",
Expand Down