diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 07487909..d196c9c1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,6 +17,8 @@ jobs: with: node-version: 18.14.0 cache: "yarn" + env: + SKIP_YARN_COREPACK_CHECK: "1" - name: Install Yarn v3 run: | corepack enable diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e5e6da1..3674f154 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - beta concurrency: ${{ github.workflow }}-${{ github.ref }} @@ -21,21 +22,19 @@ jobs: with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 18.14.0 cache: "yarn" - + env: + SKIP_YARN_COREPACK_CHECK: "1" - name: Install Yarn v3 run: | corepack enable corepack prepare yarn@3.4.1 --activate - - name: Install dependencies run: yarn - - name: Publish uses: changesets/action@v1 with: