Skip to content
This repository was archived by the owner on Nov 21, 2023. It is now read-only.

Commit 45b0e0e

Browse files
committed
workflow to publish package
1 parent 653949f commit 45b0e0e

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/release-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: n8n-nodes-codechat
1+
name: Node.js Package
22

33
on:
44
release:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ dist
66
npm-debug.log*
77
yarn.lock
88
.vscode/launch.json
9+
.npmrc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Node configuration is quite simple, just specify the credentials and use the ava
2828

2929
# Credentials
3030

31-
All operations require a credential which is composed of the **License**, **Instance Name** and the call **Base Url**. Which will be made available at the time of contracting the service.
31+
All operations require a credential which is composed of the **Api Key**, **Instance Name** and the call **Base Url**. Which will be made available at the time of contracting the service.
3232
![Credentials Codechat](./assets/codechat_credentials.png)
3333

3434
# Resources

assets/codechat_credentials.png

-5.58 KB
Loading

nodes/CodeChat/CodeChat.node.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export class CodeChat implements INodeType {
1818
requestDefaults: {
1919
baseURL: '={{$credentials.baseUrl}}',
2020
headers: {
21-
apiKey: '={{$credentials.apiKey}}'
22-
}
21+
apiKey: '={{$credentials.apiKey}}',
22+
},
2323
},
2424
properties: [
2525
{

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "n8n-nodes-codechat",
3-
"version": "0.1.2",
3+
"version": "0.1.4",
44
"description": "Rest api for communication with WhatsApp",
55
"keywords": [
66
"n8n",
@@ -73,6 +73,6 @@
7373
"typescript": "~4.6.0"
7474
},
7575
"publishConfig": {
76-
"@jrcleber:registry": "https://npm.pkg.github.com"
76+
"@jrclber:registry": "https://npm.pkg.github.com"
7777
}
7878
}

0 commit comments

Comments
 (0)