Skip to content

Commit

Permalink
Adding "NPM publishing" workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsislimadev committed Aug 31, 2023
1 parent 8c08c6e commit 7c1658f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node.js Package

on:
push:
branches:
- 'main'
schedule:
- cron: '50 23 * * *'
workflow_dispatch:

jobs:
publish-npm:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/

- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}

0 comments on commit 7c1658f

Please sign in to comment.