diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 37df5ab2767..0f241893be8 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -38,8 +38,13 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - - name: Install dependencies + - name: Install dependencies (and run build) run: yarn --frozen-lockfile - name: (WIP) Determine what version to release run: npx lerna version --loglevel=silly --conventional-commits --exact + + # - name: Publish the updated versions to NPM (--yes will skip the confirmation prompt) + # run: npx lerna publish from-package --yes + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}