chore(deps): update dependency @types/mdx to ^2.0.13 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |