Update package.json version to 0.2.0 #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/changesets/action | |
name: Release | |
on: | |
push: | |
branches: | |
- phase21 | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build package | |
run: yarn build | |
- name: Check release | |
uses: changesets/action@v1 | |
with: | |
publish: yarn release | |
commit: "ci: release packages" | |
title: "ci: release packages" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |