Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hill <john.c.hill@nasa.gov>2022-11-10 19:45:55 +0300
committerGitHub <noreply@github.com>2022-11-10 19:45:55 +0300
commitefda42cf6d8ab8d90f39ec5c2f25dd1fd8e4c119 (patch)
tree4b5e23b53b65422ee814adb2c3b500659a554579
parente8ee5b3fc9b7fabfddffd2f41c39ec6f1cc65fcf (diff)
Make package public - master (#5967)
* Update package.json * Update npm-prerelease.yml
-rw-r--r--.github/workflows/npm-prerelease.yml6
-rw-r--r--package.json3
2 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/npm-prerelease.yml b/.github/workflows/npm-prerelease.yml
index 0f141e362..a9321ac56 100644
--- a/.github/workflows/npm-prerelease.yml
+++ b/.github/workflows/npm-prerelease.yml
@@ -16,7 +16,11 @@ jobs:
with:
node-version: 16
- run: npm install
- - run: npm test
+ - run: |
+ echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
+ npm whoami
+ npm publish --access=public --tag unstable openmct
+ # - run: npm test
publish-npm-prerelease:
needs: build
diff --git a/package.json b/package.json
index e32c04b14..c3d9d856d 100644
--- a/package.json
+++ b/package.json
@@ -114,6 +114,5 @@
"ios_saf > 15"
],
"author": "",
- "license": "Apache-2.0",
- "private": true
+ "license": "Apache-2.0"
}