diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index cd8bd09..23a93e0 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -35,7 +35,7 @@ jobs: run: echo "TBD" # FIXME: add linting and tests - name: Build - run: npm run build + run: npm run build:packages - name: Create Release Pull Request or Publish to npm id: changesets diff --git a/package.json b/package.json index 09a204a..023c223 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ ], "scripts": { "build": "turbo build", + "build:packages": "turbo build --filter='./packages/*'", "changeset": "npx changeset", "release": "changeset publish", "prettier": "prettier --write .",