Skip to content

1.9.5

1.9.5 #66

Workflow file for this run

name: CI
on:
push:
tags: [v*]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/v') && github.repository_owner == 'vuetifyjs'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm build:one
env:
VITE_API_SERVER_URL: https://api.vuetifyjs.com
- run: npm config set //registry.npmjs.org/:_authToken ${NPM_API_KEY:?}
env:
NPM_API_KEY: ${{ secrets.NPM_TOKEN }}
- run: npm publish
- name: GitHub release
run: pnpm conventional-github-releaser -p vuetify
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{ secrets.GITHUB_TOKEN }}