mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-09 02:49:29 +08:00
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
# Adapted from create-t3-app.
|
|
|
|
name: Release - Beta
|
|
|
|
on:
|
|
pull_request:
|
|
types: [labeled]
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
|
|
jobs:
|
|
prerelease:
|
|
if: |
|
|
github.repository_owner == 'shadcn-ui' &&
|
|
contains(github.event.pull_request.labels.*.name, '🚀 autorelease')
|
|
name: Build & Publish a beta release to NPM
|
|
runs-on: ubuntu-latest
|
|
environment: Preview
|
|
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Use PNPM
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9.0.6
|
|
|
|
- name: Use Node.js 20
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
registry-url: "https://registry.npmjs.org"
|
|
cache: "pnpm"
|
|
|
|
- name: Update npm for OIDC support
|
|
run: npm install -g npm@latest
|
|
|
|
- name: Install NPM Dependencies
|
|
run: pnpm install
|
|
|
|
- name: Modify package.json version
|
|
run: node .github/version-script-beta.js
|
|
|
|
- name: Publish Beta to NPM
|
|
run: pnpm pub:beta
|
|
|
|
- name: get-npm-version
|
|
id: package-version
|
|
uses: martinbeentjes/npm-get-version-action@main
|
|
with:
|
|
path: packages/shadcn
|
|
|
|
- name: Upload packaged artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: npm-package-shadcn@${{ steps.package-version.outputs.current-version }}-pr-${{ github.event.number }} # encode the PR number into the artifact name
|
|
path: packages/shadcn/dist/index.js
|