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
9 changes: 4 additions & 5 deletions .github/workflows/n8n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,6 @@ jobs:
bun run tsc
find nodes icons credentials \( -name '*.png' -o -name '*.svg' \) | while read f; do mkdir -p "dist/$(dirname "$f")" && cp "$f" "dist/$f"; done

- name: Scan community package
if: steps.changes.outputs.changed == 'true'
working-directory: integrations/n8n
run: bun x @n8n/scan-community-package .

- name: Publish to npm
if: steps.changes.outputs.changed == 'true'
working-directory: integrations/n8n
Expand All @@ -192,6 +187,10 @@ jobs:
fi
}

- name: Scan community package
if: steps.changes.outputs.changed == 'true'
run: npx @n8n/scan-community-package n8n-nodes-pachca@${{ steps.version.outputs.version }}

- name: Create GitHub Release
if: steps.changes.outputs.changed == 'true'
working-directory: integrations/n8n
Expand Down
4 changes: 3 additions & 1 deletion integrations/n8n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
"directory": "integrations/n8n"
},
"files": [
"dist/",
"dist/nodes/",
"dist/credentials/",
"dist/icons/",
"index.js",
"icons/",
"docs/",
Expand Down
Loading