Skip to content

Updated from pipeline #7

Updated from pipeline

Updated from pipeline #7

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- run: yarn
- name: Create Release Pull Request
uses: changesets/action@v1
with:
publish: yarn changeset:tag
version: yarn changeset:version
commit: 'chore: version packages'
title: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}