Skip to content

⬆️ upgrade babel monorepo to v7.26.8 (#205) #230

⬆️ upgrade babel monorepo to v7.26.8 (#205)

⬆️ upgrade babel monorepo to v7.26.8 (#205) #230

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
if: github.repository == 'onRuntime/kartrak'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
- name: Install Dependencies
run: yarn
- name: Build
run: yarn build
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: yarn run release
version: yarn run version
commit: "🔖 release version"
title: "🔖 release version"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}