From b0352804c8f7da64b904c0f0e6d82078c90542b2 Mon Sep 17 00:00:00 2001 From: DevelopmentCats Date: Fri, 31 Oct 2025 18:14:33 +0000 Subject: [PATCH] chore: separate TypeScript compilation and build steps in CI workflow --- .github/workflows/release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3abe67d6..e4216d50 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -61,7 +61,9 @@ jobs: - run: yarn lint - run: yarn test # Must run tsc first to generate the .d.ts files. - - run: yarn tsc && yarn build + - run: yarn tsc + working-directory: . + - run: yarn build # Version it with the version in the tag and upload it to a draft release. - run: yarn version --new-version ${{ needs.split-tag.outputs.version }} - run: yarn pack