Skip to content

Commit 3db2d8d

Browse files
committed
prepare for release
1 parent 194993d commit 3db2d8d

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish Package to npmjs
2+
on:
3+
release:
4+
types: [created]
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: "20.x"
14+
registry-url: "https://registry.npmjs.org"
15+
- run: npm ci
16+
- run: npm build
17+
- run: npm publish
18+
env:
19+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
{
2-
"name": "@gedai/core",
2+
"name": "@gedai/nestjs-core",
33
"version": "0.0.1",
4-
"description": "",
5-
"author": "",
4+
"description": "Core Package for Gedai opionated use of NestJS",
5+
"author": "gm50x",
66
"private": false,
77
"publishConfig": {
8-
"registry": "http://localhost:4873"
8+
"access": "public",
9+
"registry": "https://registry.npmjs.org"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/gedai-dev/nestjs-core.git"
914
},
1015
"main": "dist/index.js",
1116
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)