diff options
-rw-r--r-- | .github/workflows/release.yml | 18 |
1 files 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 |