File tree 2 files changed +6
-9
lines changed 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
- name : Publish package to GitHub Packages
1
+ name : Publish package to npm Registry
2
2
3
3
on :
4
4
release :
@@ -13,14 +13,11 @@ jobs:
13
13
14
14
steps :
15
15
- uses : actions/checkout@v4
16
- # Setup .npmrc file to publish to GitHub Packages
17
16
- uses : actions/setup-node@v4
18
17
with :
19
18
node-version : ' 20.x'
20
- registry-url : ' https://npm.pkg.github.com'
21
- # Defaults to the user or organization that owns the workflow file
22
- scope : ' @${{ github.repository_owner }}'
19
+ registry-url : ' https://registry.npmjs.org'
23
20
- run : npm ci
24
21
- run : npm publish
25
22
env :
26
- NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " @programcomputer/ nasa-mcp-server" ,
2
+ "name" : " nasa-mcp-server" ,
3
3
"version" : " 1.0.0" ,
4
4
"description" : " Model Context Protocol (MCP) server for NASA APIs" ,
5
5
"main" : " dist/index.js" ,
29
29
" typescript"
30
30
],
31
31
"author" : " " ,
32
- "license" : " MIT " ,
32
+ "license" : " ISC " ,
33
33
"publishConfig" : {
34
- "registry" : " https://npm.pkg.github.com " ,
34
+ "registry" : " https://registry.npmjs.org " ,
35
35
"access" : " public"
36
36
},
37
37
"repository" : {
You can’t perform that action at this time.
0 commit comments