From fc62ba8622ed634e4c2d8399a4e880f983747181 Mon Sep 17 00:00:00 2001 From: James Henry Date: Mon, 7 Sep 2020 23:12:20 +0400 Subject: [PATCH] fix(types): artificial fix needed to trigger release --- .github/workflows/manual-release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 }}