-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v3.0.3-rc.0 #60
base: main
Are you sure you want to change the base?
v3.0.3-rc.0 #60
Conversation
@@ -0,0 +1,30 @@ | |||
name: Node.js Setup and Test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Refactor into a shared file so we can be sure the checks are always run.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
smart!
uses: ./.github/workflows/nodejs-setup.yml | ||
with: | ||
node_version: '18.x' | ||
npm_tag: rc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
npm tag goes here; end-users need to explicitly select this tag and it won't "accidentally" be treated as a dependency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love it!
@@ -0,0 +1,30 @@ | |||
name: Node.js Setup and Test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
smart!
@@ -0,0 +1,11 @@ | |||
name: Publish RC to NPM | |||
on: | |||
workflow_dispatch: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
☝️ and this lets us trigger from UI ✅
Fixes: #issue
Motivation and Context
Experimenting with a release process that allows us to have "release candidates" that we can explicitly add to our services and dogfood before publishing for our customers.
Description
Bumping the version programmatically:
To publish this version:
Caveat: this is different than our normal publish command. There is a new github action in this PR that can be executed manually.
For end-users to install:
How has this been tested?