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
4 changes: 2 additions & 2 deletions .github/workflows/n8n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
OUTPUT=$(npm publish --access public --provenance 2>&1) || {
OUTPUT=$(npm publish --access public --provenance --ignore-scripts 2>&1) || {
CODE=$?
if echo "$OUTPUT" | grep -q "E409\|already exists"; then
echo "Version ${{ steps.version.outputs.version }} already published, skipping"
Expand All @@ -192,7 +192,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm pack
npm pack --ignore-scripts
mkdir n8n-nodes-pachca
tar -xzf n8n-nodes-pachca-*.tgz --strip-components=1 -C n8n-nodes-pachca
rm n8n-nodes-pachca-*.tgz
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN bun install

COPY . .

RUN bun x turbo check
RUN bun x turbo check --filter=@pachca/docs
RUN bun x turbo build --filter=@pachca/docs

FROM oven/bun:1.3.4 AS runner
Expand Down
Loading