Skip to content

chore(deps): update dependency @types/mdx to ^2.0.13 #11

chore(deps): update dependency @types/mdx to ^2.0.13

chore(deps): update dependency @types/mdx to ^2.0.13 #11

Workflow file for this run

name: Release beta
on:
pull_request:
branches:
- main
- '!changeset-release/**'
workflow_dispatch:
inputs:
version:
description: specified version to be released
required: true
tag:
description: optional specified npm tag to be released
jobs:
release_beta:
name: Release Beta
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn --immutable
- name: Set git info
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Release beta
run: yarn release:beta
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
PREVERSION_VERSION: ${{ github.event.inputs.version }}
PREVERSION_TAG: ${{ github.event.inputs.tag }}