Update version to 1.11.1 in package.json #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 'minor' | |
- 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 "//npm.pkg.github.com/:_authToken=${{secrets.GITHUB_TOKEN}}" > .npmrc | |
npm publish --access public --registry https://npm.pkg.github.com/wizarrrr | |
- name: Cleanup | |
run: rm .npmrc |