From fcca0f947e33f1e22422756c350d8d2d6ffcaf4f Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Fri, 4 Aug 2023 20:04:34 +0800 Subject: [PATCH] feat(workflows): include --ignore-scripts --- .github/workflows/release-docker.yml | 4 ++-- .github/workflows/release-npm.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index 470c91d28d..bafb7cc3cc 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -92,12 +92,12 @@ jobs: export NODE_OPTIONS="--max_old_space_size=16384" targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js cd packages/nocodb-sdk - pnpm --filter=!playwright install --no-frozen-lockfile && pnpm run build + pnpm --filter=!playwright install --ignore-scripts --no-frozen-lockfile && pnpm run build cd ../.. targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNcGuiVersion.js && cd packages/nc-gui - pnpm --filter=!playwright install --no-frozen-lockfile + pnpm --filter=!playwright install --ignore-scripts --no-frozen-lockfile targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} pnpm run build:copy cd ../.. targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNcGui.js diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 33466bc9f3..58428d1dcf 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -56,13 +56,13 @@ jobs: export NODE_OPTIONS="--max_old_space_size=16384" targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js && cd packages/nocodb-sdk - npm --filter=!playwright install --no-frozen-lockfile && pnpm run build && pnpm publish --no-git-checks && + npm --filter=!playwright install --ignore-scripts --no-frozen-lockfile && pnpm run build && pnpm publish --no-git-checks && cd ../.. && sleep 90 && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNcGuiVersion.js && cd packages/nc-gui && - pnpm --filter=!playwright install --no-frozen-lockfile + pnpm --filter=!playwright install --ignore-scripts --no-frozen-lockfile && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} pnpm run build:copy:publish --no-git-checks && cd ../.. && sleep 90 &&