n8n-nodes-speechall 0.1.2 → 0.1.4

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,24 @@ 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
+
24
42
  ## Local n8n UI Testing
25
43
 
26
44
  Use this flow when you want to test the node in a real local n8n editor before publishing it.
@@ -33,12 +51,12 @@ This is the closest local equivalent to installing the package as an n8n communi
33
51
  nvm use
34
52
  npm ci --ignore-scripts
35
53
  npm run build
36
- npm pack --silent
54
+ PACKAGE_TARBALL=$(npm pack --silent)
37
55
 
38
56
  REPO_ROOT=$(pwd)
39
57
  mkdir -p /tmp/speechall-n8n-ui/.n8n/nodes
40
58
  cd /tmp/speechall-n8n-ui/.n8n/nodes
41
- npm install "$REPO_ROOT/n8n-nodes-speechall-0.1.0.tgz" --ignore-scripts
59
+ npm install "$REPO_ROOT/$PACKAGE_TARBALL" --ignore-scripts
42
60
 
43
61
  N8N_USER_FOLDER=/tmp/speechall-n8n-ui npx n8n@latest
44
62
  ```
@@ -61,8 +79,9 @@ If you prefer to keep the repository path explicit:
61
79
 
62
80
  ```bash
63
81
  REPO_ROOT=/path/to/speechall-n8n-node
82
+ PACKAGE_TARBALL=$(cd "$REPO_ROOT" && npm pack --silent)
64
83
  cd /tmp/speechall-n8n-ui/.n8n/nodes
65
- npm install "$REPO_ROOT/n8n-nodes-speechall-0.1.0.tgz" --ignore-scripts
84
+ npm install "$REPO_ROOT/$PACKAGE_TARBALL" --ignore-scripts
66
85
  ```
67
86
 
68
87
  ### 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.2",
3
+ "version": "0.1.4",
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.2",
3
+ "version": "0.1.4",
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",