Skip to content

docs: update core.mdx changelog to v2.1.0 #375

docs: update core.mdx changelog to v2.1.0

docs: update core.mdx changelog to v2.1.0 #375

name: pr-bucketeer-io-docs
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- "**/**.md"
jobs:
build_and_preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Yarn install dependencies
run: |
yarn install
- name: Yarn Build
run: |
yarn build