diff options
author | 2021-07-24 16:00:57 -0700 | |
---|---|---|
committer | 2021-07-24 16:00:57 -0700 | |
commit | 7d82ce9c92246db02bcda22cabb95c439b2408af (patch) | |
tree | 79786c07baae01bdfe36aa51d457b539cd1f8b3c | |
parent | c5073cc982a8b60de8baaec79188c5fa87709c06 (diff) | |
download | astro-7d82ce9c92246db02bcda22cabb95c439b2408af.tar.gz astro-7d82ce9c92246db02bcda22cabb95c439b2408af.tar.zst astro-7d82ce9c92246db02bcda22cabb95c439b2408af.zip |
fix changeset ci
-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 |