-
Notifications
You must be signed in to change notification settings - Fork 25
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
Release Job #12
Release Job #12
Conversation
7ebe821
to
55bae1e
Compare
55bae1e
to
95a0dc0
Compare
.circleci/config.yml
Outdated
name: node-14 | ||
- release-management/test-package: | ||
name: node-12 |
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.
I know this isn't technically part of your changes but I don't think these lines are actually testing against node 12 and 14 without the node_version parameter.
Can we just change lines 93-99 to match what we have in other repos via Leif?
- release-management/test-package:
matrix:
parameters:
os:
- linux
- windows
node_version:
- latest
- lts
- maintenance
exclude:
- os: windows
node_version: lts
- os: windows
node_version: maintenance
Then we'll need to change the requires
of the following jobs to just list - release-management/test-package
.
filters: | ||
branches: | ||
only: | ||
- main | ||
- release-management/release-package: | ||
node_version: '14' |
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.
node_version: '14' | |
node_version: 'latest' |
Add the circleci jobs for running releases
Depends on salesforcecli/plugin-release-management#231
@W-9499615@