Skip to content

chore(deps): bump type-fest from 4.15.0 to 4.22.1 #108

chore(deps): bump type-fest from 4.15.0 to 4.22.1

chore(deps): bump type-fest from 4.15.0 to 4.22.1 #108

name: Publish Prerelease for CLI
on:
pull_request:
branches: [main]
types: [labeled, unlabeled, opened, synchronize]
paths:
- "apps/cli/**"
jobs:
publish-prerelease:
if: contains(github.event.pull_request.labels.*.name, 'prerelease')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- uses: martinbeentjes/npm-get-version-action@main
with:
path: apps/cli
id: main-version
- uses: actions/checkout@v4
- uses: martinbeentjes/npm-get-version-action@main
with:
path: apps/cli
id: pr-version
- name: Setup
uses: ./tooling/github/setup
- uses: actions/github-script@v6
env:
PR_VERSION: ${{steps.pr-version.outputs.current-version}}
MAIN_VERSION: ${{steps.main-version.outputs.current-version}}
with:
script: require('./.github/versioning.js').verify({ github, context, core })
- name: set publishing config
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: pnpm i
- run: pnpm --filter=bumpgen run build
- run: pnpm --filter=bumpgen publish --tag next --access public --no-git-checks
env:
NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"