Skip to content

Commit

Permalink
Merge pull request #32 from niveussolutions/develop
Browse files Browse the repository at this point in the history
test actions
  • Loading branch information
natesh245 authored Aug 31, 2023
2 parents a3f55a9 + 7602bde commit 8c83180
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 34 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/npm-publish.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish to NPM
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies 🔧
run: npm ci
- name: Publish package on NPM 📦
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@niveus/apigee-backup-tool",
"version": "2.0.2",
"version": "2.0.3",
"type": "module",
"bin": {
"apigee-backup-tool": "./bin/cli.js"
Expand Down

0 comments on commit 8c83180

Please sign in to comment.