Skip to content

chore: bump version to 0.9.26 (#3954) #3

chore: bump version to 0.9.26 (#3954)

chore: bump version to 0.9.26 (#3954) #3

Workflow file for this run

name: Publish buefy to NPM
on:
push:
branches:
- master
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: 'buefy'
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}