Skip to content

feat: add identify api for tip activation and use ownership for missi… #63

feat: add identify api for tip activation and use ownership for missi…

feat: add identify api for tip activation and use ownership for missi… #63

Workflow file for this run

name: Release
on:
push:
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
release:
name: Create Changeset PR
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install Dependencies
run: yarn install --immutable
- name: Build type declarations
run: yarn tsc
- name: Build packages
run: yarn build:all
- name: Create Release Pull Request
uses: changesets/action@v1
with:
version: yarn version
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}