Skip to content

Roll back ESM-only changes (and the 2.0.0 alpha publishes) (#16) #13

Roll back ESM-only changes (and the 2.0.0 alpha publishes) (#16)

Roll back ESM-only changes (and the 2.0.0 alpha publishes) (#16) #13

Workflow file for this run

name: Release
on:
push:
branches:
- main
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
- uses: ./.github/actions/node
- name: Create Release Pull Request / NPM Publish
uses: changesets/action@v1
with:
publish: npm run changeset-publish
version: npm run changeset-version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}