Skip to content

fix: post title lineheight & remove splitpanel #12

fix: post title lineheight & remove splitpanel

fix: post title lineheight & remove splitpanel #12

Workflow file for this run

name: Publish to NPM
on:
push:
tags:
- "v*"
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- name: Install Pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: pnpm i
- name: Build
run: pnpm run build
- name: Copy Assets
run: npm run cp:assets
- name: Publish to NPM
run: npm publish
working-directory: release/hexo-theme-cosy
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}