Skip to content

Commit

Permalink
feat: Add NPM build and publish workflow
Browse files Browse the repository at this point in the history
This commit adds a new workflow file `release.yml` that triggers NPM package build and publication when changes are pushed to the main branch. It also updates the version number in `package.json` from 1.9.2 to 1.9.3.
  • Loading branch information
realashleybailey committed Oct 30, 2023
1 parent 85bc6d6 commit 916889a
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
42 changes: 42 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
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 }}

- 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: Cleanup
run: rm .npmrc
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wizarr-vue-modal",
"version": "1.9.2",
"version": "1.9.3",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit 916889a

Please sign in to comment.