n8n-nodes-speechall 0.1.3 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,7 @@ Speechall is a unified speech-to-text API for transcribing audio with multiple p
4
4
 
5
5
  ## Installation
6
6
 
7
- Install `n8n-nodes-speechall` as a community node in n8n Cloud or self-hosted n8n after the package is published to npm.
7
+ Install `n8n-nodes-speechall` as a community node in n8n Cloud or self-hosted n8n.
8
8
 
9
9
  For local development:
10
10
 
@@ -21,6 +21,30 @@ This repository keeps runtime `dependencies` empty for n8n Cloud verification re
21
21
 
22
22
  Use Node 22 LTS for local n8n tooling. Newer non-LTS Node releases can fail while installing n8n development dependencies with native modules such as `isolated-vm`.
23
23
 
24
+ ## Releases
25
+
26
+ All npm releases are published by [the GitHub Actions publish workflow](https://github.com/Speechall/speechall-n8n-node/blob/main/.github/workflows/publish.yml) through npm Trusted Publishing with provenance. Do not add an `NPM_TOKEN` repository secret and do not run `npm publish` locally.
27
+
28
+ To create a release:
29
+
30
+ ```bash
31
+ git switch main
32
+ git pull --ff-only
33
+ npm ci
34
+ npm test
35
+ npm run release
36
+ ```
37
+
38
+ Select the appropriate version increment and approve the release commit, version tag, and push. Tags use the version without a `v` prefix, such as `0.1.4`. The pushed tag triggers GitHub Actions, which runs lint and build checks before publishing to npm.
39
+
40
+ After the workflow succeeds, confirm the new version and provenance on the [npm package page](https://www.npmjs.com/package/n8n-nodes-speechall). The package's npm publishing access must remain configured for the `Speechall/speechall-n8n-node` repository and `publish.yml` workflow.
41
+
42
+ Before submitting a published version to the n8n Creator Portal, run the official community package scanner:
43
+
44
+ ```bash
45
+ npx @n8n/scan-community-package n8n-nodes-speechall
46
+ ```
47
+
24
48
  ## Local n8n UI Testing
25
49
 
26
50
  Use this flow when you want to test the node in a real local n8n editor before publishing it.
@@ -33,12 +57,12 @@ This is the closest local equivalent to installing the package as an n8n communi
33
57
  nvm use
34
58
  npm ci --ignore-scripts
35
59
  npm run build
36
- npm pack --silent
60
+ PACKAGE_TARBALL=$(npm pack --silent)
37
61
 
38
62
  REPO_ROOT=$(pwd)
39
63
  mkdir -p /tmp/speechall-n8n-ui/.n8n/nodes
40
64
  cd /tmp/speechall-n8n-ui/.n8n/nodes
41
- npm install "$REPO_ROOT/n8n-nodes-speechall-0.1.0.tgz" --ignore-scripts
65
+ npm install "$REPO_ROOT/$PACKAGE_TARBALL" --ignore-scripts
42
66
 
43
67
  N8N_USER_FOLDER=/tmp/speechall-n8n-ui npx n8n@latest
44
68
  ```
@@ -61,8 +85,9 @@ If you prefer to keep the repository path explicit:
61
85
 
62
86
  ```bash
63
87
  REPO_ROOT=/path/to/speechall-n8n-node
88
+ PACKAGE_TARBALL=$(cd "$REPO_ROOT" && npm pack --silent)
64
89
  cd /tmp/speechall-n8n-ui/.n8n/nodes
65
- npm install "$REPO_ROOT/n8n-nodes-speechall-0.1.0.tgz" --ignore-scripts
90
+ npm install "$REPO_ROOT/$PACKAGE_TARBALL" --ignore-scripts
66
91
  ```
67
92
 
68
93
  ### Development hot-reload mode
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-speechall",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Transcribe audio in n8n using Speechall",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/Speechall/speechall-n8n-node",
@@ -15,7 +15,8 @@
15
15
  "diarization"
16
16
  ],
17
17
  "author": {
18
- "name": "Speechall"
18
+ "name": "Speechall",
19
+ "email": "info@actondon.com"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-speechall",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Transcribe audio in n8n using Speechall",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/Speechall/speechall-n8n-node",
@@ -15,7 +15,8 @@
15
15
  "diarization"
16
16
  ],
17
17
  "author": {
18
- "name": "Speechall"
18
+ "name": "Speechall",
19
+ "email": "info@actondon.com"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",