Skip to content

chore: remove deploy docs workflow in favor of gh pages branch #61

chore: remove deploy docs workflow in favor of gh pages branch

chore: remove deploy docs workflow in favor of gh pages branch #61

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:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Install dependencies
run: yarn install
# https://github.com/changesets/action
- name: Create release PR or release packages
uses: changesets/action@v1
with:
publish: yarn release
commit: version-packages
title: 'ci: version packages'
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}