Skip to content

Bump eslint-plugin-vue from 9.20.1 to 9.21.0 (#904) #845

Bump eslint-plugin-vue from 9.20.1 to 9.21.0 (#904)

Bump eslint-plugin-vue from 9.20.1 to 9.21.0 (#904) #845

Workflow file for this run

name: Build and Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
npm ci
- name: Build
run: |
npm run build
- name: Publish
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" > .npmrc
npm publish || true
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}