From 3061285f9a39537c21c58dd422a491ca81cc611a Mon Sep 17 00:00:00 2001 From: Nicole Thoen Date: Mon, 20 Mar 2023 15:04:29 -0400 Subject: [PATCH] feat(release.yml): try another dry-run --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b08f5ac4..481c222c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - uses: actions/cache@v2 id: yarn-cache name: Cache npm deps @@ -22,7 +22,7 @@ jobs: node_modules **/node_modules ~/.cache/Cypress - key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }} + key: ${{ runner.os }}-yarn-16-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }} - run: yarn install --frozen-lockfile if: steps.yarn-cache.outputs.cache-hit != 'true' - uses: actions/cache@v2 @@ -32,9 +32,9 @@ jobs: path: | packages/*/dist packages/react-styles/css - key: ${{ runner.os }}-dist-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock', 'package.json', 'packages/*/*', '!packages/*/dist', '!packages/*/node_modules') }} + key: ${{ runner.os }}-dist-16-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock', 'package.json', 'packages/*/*', '!packages/*/dist', '!packages/*/node_modules') }} - name: Build dist run: yarn build if: steps.dist.outputs.cache-hit != 'true' - name: Release to NPM - run: cd packages/module && npx semantic-release@19.0.5 --dry-run + run: npx semantic-release@19.0.5 --dry-run