Skip to content

Commit

Permalink
More GitHub actions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Nov 20, 2023
1 parent 4250e5a commit ee8281d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- beta

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand All @@ -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 [email protected] --activate
- name: Install dependencies
run: yarn

- name: Publish
uses: changesets/action@v1
with:
Expand Down

0 comments on commit ee8281d

Please sign in to comment.