2022-01-31 00:58:20 +03:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
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
|
2022-02-26 17:57:20 +03:00
|
|
|
uses: actions/setup-node@v3
|
2022-01-31 00:58:20 +03:00
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'yarn'
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: yarn install
|
|
|
|
|
|
|
|
- name: Create Release Pull Request or Publish to npm
|
|
|
|
id: changesets
|
|
|
|
uses: changesets/action@v1
|
|
|
|
with:
|
|
|
|
version: yarn changeset version
|
2022-01-31 02:38:03 +03:00
|
|
|
publish: yarn release
|
2022-01-31 00:58:20 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|