diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00a3cfd..c2de5e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,23 +29,23 @@ jobs: fail-fast: false matrix: path: ${{fromJson(needs.release.outputs.paths_released)}} - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 16 - registry-url: 'https://registry.npmjs.org' - - name: Build Packages - run: | - cd ${{ matrix.path }} - npm install - npx lerna bootstrap - # Release Please has already incremented versions and published tags, so we just - # need to publish all unpublished versions to NPM here - # See: https://github.com/lerna/lerna/tree/main/commands/publish#bump-from-package - - name: Publish to NPM - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: | - cd ${{ matrix.path }} - npx lerna publish from-package --no-push --no-private --yes \ No newline at end of file + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 16 + registry-url: 'https://registry.npmjs.org' + - name: Build Packages + run: | + cd ${{ matrix.path }} + npm install + npx lerna bootstrap + # Release Please has already incremented versions and published tags, so we just + # need to publish all unpublished versions to NPM here + # See: https://github.com/lerna/lerna/tree/main/commands/publish#bump-from-package + - name: Publish to NPM + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + run: | + cd ${{ matrix.path }} + npx lerna publish from-package --no-push --no-private --yes \ No newline at end of file