Skip to content

release: v0.0.10

release: v0.0.10 #11

Workflow file for this run

name: Publish Package
on:
push:
tags:
- "*"
jobs:
publish:
# prevents this action from running on forks
if: github.repository == 'yext/visual-editor'
runs-on: ubuntu-latest
environment: Release
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/[email protected]
- name: Set node version to 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- name: Install deps
run: pnpm install
- name: Publish package
run: pnpm run ci-publish ${{ github.ref_name }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}