Skip to content

Commit

Permalink
Merge pull request #1 from Ajayos/github-npm
Browse files Browse the repository at this point in the history
👨‍💻CODE BY 🕊️★⃝AJAY O S©️🧚‍♂️
  • Loading branch information
Ajayos committed Apr 22, 2023
2 parents 78ad583 + c6af66c commit c7d2fc0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm test
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.TOKEN}}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nodelogger",
"name": "@ajayos/nodelogger",
"version": "1.0.0",
"description": "This is a logging module that allows the user to log messages with different severity levels. The module uses the Winston logging library and allows the user to configure various options for the log files.",
"main": "index.js",
Expand Down Expand Up @@ -27,4 +27,4 @@
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
}
}
}

0 comments on commit c7d2fc0

Please sign in to comment.