Skip to content

0.0.4

0.0.4 #1

Workflow file for this run

name: CI
on:
push:
tags: [v*]
jobs:
release:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/v') && github.repository_owner == 'vuetifyjs'
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN:?}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish