2021-12-01 18:14:02 +00:00
|
|
|
# This workflow will run tests using node and then publish a package to npmjs when a prerelease is created
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
|
|
|
|
|
|
|
|
name: npm_prerelease
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [prereleased]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-02 23:39:54 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-24 23:52:17 +00:00
|
|
|
- uses: actions/setup-node@v4
|
2021-12-01 18:14:02 +00:00
|
|
|
with:
|
2023-06-21 20:54:14 +00:00
|
|
|
node-version: lts/hydrogen
|
2024-03-14 16:27:31 +00:00
|
|
|
- run: npm ci
|
2022-11-10 16:45:55 +00:00
|
|
|
- run: |
|
|
|
|
echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
|
|
|
|
npm whoami
|
|
|
|
npm publish --access=public --tag unstable openmct
|
|
|
|
# - run: npm test
|
2021-12-01 18:14:02 +00:00
|
|
|
|
|
|
|
publish-npm-prerelease:
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-02 23:39:54 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-24 23:52:17 +00:00
|
|
|
- uses: actions/setup-node@v4
|
2021-12-01 18:14:02 +00:00
|
|
|
with:
|
2023-06-21 20:54:14 +00:00
|
|
|
node-version: lts/hydrogen
|
2021-12-01 18:14:02 +00:00
|
|
|
registry-url: https://registry.npmjs.org/
|
2024-03-14 16:27:31 +00:00
|
|
|
- run: npm ci
|
2022-11-03 20:49:03 +00:00
|
|
|
- run: npm publish --access=public --tag unstable
|
2021-12-01 18:14:02 +00:00
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|