Update vercel rewrites #755
Workflow file for this run
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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [closed] | |
branches: | |
- main | |
jobs: | |
publish: | |
if: | |
(github.event.pull_request.merged == true && | |
github.event.pull_request.head.ref == 'prepare-release') || | |
github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org/" | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- name: Get version | |
id: get_version | |
run: | | |
echo "VERSION=$(jq -r '.version' packages/controller/package.json)" >> $GITHUB_OUTPUT | |
- name: Publish to npm | |
run: | | |
pnpm release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |