Skip to content

Fix fs-extra imports (#9843) #2214

Fix fs-extra imports (#9843)

Fix fs-extra imports (#9843) #2214

Workflow file for this run

name: Release
on:
push:
branches:
- 'master'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
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 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- name: Install Dependencies
run: yarn --immutable
# `changesets` will use Prettier to format our changelogs. Because our
# config points to a custom plugin, we need to build that plugin first.
# We'll build everything for good measure.
- name: Build Packages
run: make build
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This invokes the `version` script in `package.json`, which will run
# `changeset version` and then `yarn`. We need to run `yarn` in order
# to update `yarn.lock`: https://github.com/changesets/action/issues/170
version: yarn version
# This invokes the `release` script in `package.json`, which will build
# all the packages and then invoke `changeset publish`.
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# This token was generated by Nathan Walters on 8 February 2022.
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}