From 7d82ce9c92246db02bcda22cabb95c439b2408af Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Sat, 24 Jul 2021 16:00:57 -0700 Subject: [PATCH] fix changeset ci --- .github/workflows/release.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7444ecacc..1b1cda339 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,19 +19,11 @@ jobs: uses: actions/setup-node@v2 with: node-version: 14.x - - - name: Get yarn cache directory - id: yarn-cache - run: echo "::set-output name=dir::$(yarn cache dir)" - - - name: Set dependencies cache - uses: actions/cache@v2 - with: - path: ${{ steps.yarn-cache.outputs.dir }} - key: ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('yarn.lock') }} - ${{ runner.os }}-${{ matrix.node_version }}- + + - name: Install dependencies + run: yarn --frozen-lockfile --ignore-engines + env: + CI: true - name: Create release PR uses: changesets/action@master