Skip to content

Change version type to 'patch'; update GitHub Packages registry URL i… #4

Change version type to 'patch'; update GitHub Packages registry URL i…

Change version type to 'patch'; update GitHub Packages registry URL i… #4

Workflow file for this run

name: Build and Publish to NPM
on:
push:
branches:
- main # Set a branch name to trigger deployment
permissions:
packages: write
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: 'Automated Version Bump'
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version-type: 'patch'
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14 # You can specify the Node.js version you need
- name: Install dependencies
run: npm install
- name: Build package
run: npm run build # Replace with your build command
- name: Publish to NPM
run: |
echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > .npmrc
npm publish
- name: Publish to GitHub Packages
run: |
echo "@wizarrrr:registry=https://npm.pkg.github.com" >> .npmrc
npm publish --access public --registry https://npm.pkg.github.com/wizarrrr
- name: Cleanup
run: rm .npmrc