Skip to content

Fix "TypeError: this.$slots.default is not a function" (#18, #20) (#25) #3

Fix "TypeError: this.$slots.default is not a function" (#18, #20) (#25)

Fix "TypeError: this.$slots.default is not a function" (#18, #20) (#25) #3

Workflow file for this run

name: Publish buefy-next to NPM
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org/'
scope: '@ntohq'
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}