From 07613f8664ac621bb8a63b417545473edab61367 Mon Sep 17 00:00:00 2001 From: Brian Teryek Date: Tue, 10 Feb 2026 23:29:27 -0500 Subject: [PATCH 1/2] fix: pipeline issues --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release.yml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index d9a282c..436cc7d 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: NODE_ENV: production - name: Build documentation website - run: pnpm --filter tailwind-plus-syntax build + run: pnpm --filter @cometloop/safe-docs build env: GITHUB_PAGES: 'true' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0f62be..c305b18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,7 @@ jobs: with: node-version: 22 cache: pnpm + registry-url: 'https://registry.npmjs.org' - run: pnpm install --frozen-lockfile @@ -36,6 +37,7 @@ jobs: version: pnpm version-packages env: GITHUB_TOKEN: ${{ secrets.CHANGESETS_PAT }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_CONFIG_PROVENANCE: true - name: Create GitHub Releases From 2198646c8155fe888dd4826a2ba776344c0cdb63 Mon Sep 17 00:00:00 2001 From: Brian Teryek Date: Tue, 10 Feb 2026 23:36:58 -0500 Subject: [PATCH 2/2] fix: pipeline --- .github/workflows/release.yml | 3 --- turbo.json | 5 +++++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c305b18..511f07d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,6 @@ jobs: with: node-version: 22 cache: pnpm - registry-url: 'https://registry.npmjs.org' - run: pnpm install --frozen-lockfile @@ -37,8 +36,6 @@ jobs: version: pnpm version-packages env: GITHUB_TOKEN: ${{ secrets.CHANGESETS_PAT }} - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - NPM_CONFIG_PROVENANCE: true - name: Create GitHub Releases if: steps.changesets.outputs.published == 'true' diff --git a/turbo.json b/turbo.json index 1b4e93b..769d977 100644 --- a/turbo.json +++ b/turbo.json @@ -6,6 +6,11 @@ "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": ["dist/**"] }, + "@cometloop/safe-docs#build": { + "dependsOn": ["^build"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], + "outputs": [".next/**", "out/**"] + }, "lint": {}, "test": { "dependsOn": ["^build"],