From e6256502cec6bda66842d1a5eecf4ad8f0dbca14 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sun, 15 Mar 2026 19:27:13 +0000 Subject: [PATCH] fix(ci): run pnpm install with --ignore-scripts in CI and release workflows --- .gitea/workflows/ci.yml | 4 ++-- .gitea/workflows/release.yml | 2 +- changelog.md | 6 ++++++ ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1fde90e..88fc720 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: run: corepack enable - name: Install dependencies - run: pnpm install + run: pnpm install --ignore-scripts - name: Compile for current platform run: | @@ -101,7 +101,7 @@ jobs: run: corepack enable - name: Install dependencies - run: pnpm install + run: pnpm install --ignore-scripts - name: Compile all platform binaries run: mkdir -p dist/binaries && npx tsdeno compile diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 1d7fdb8..f9a6e65 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -31,7 +31,7 @@ jobs: run: corepack enable - name: Install dependencies - run: pnpm install + run: pnpm install --ignore-scripts - name: Get version from tag id: version diff --git a/changelog.md b/changelog.md index f94e3de..edecc5c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-03-15 - 1.13.12 - fix(ci) +run pnpm install with --ignore-scripts in CI and release workflows + +- Update CI workflow dependency installation steps to skip lifecycle scripts during builds. +- Apply the same install change to the release workflow for consistent automation behavior. + ## 2026-03-15 - 1.13.11 - fix(project) no changes to commit diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index b3805eb..bb555f8 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/onebox', - version: '1.13.11', + version: '1.13.12', description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index b3805eb..bb555f8 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/onebox', - version: '1.13.11', + version: '1.13.12', description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers' }