Skip to content

chore: release v0.7.0 #20

chore: release v0.7.0

chore: release v0.7.0 #20

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'
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: vuetifyjs/setup-action@master
- run: pnpm build
- run: npm install -g npm@latest
- run: npm publish
- run: pnpm conventional-github-releaser -p vuetify
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{ secrets.GITHUB_TOKEN }}