-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
[core] Add pkg.pr.new
publishing
#42984
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
Changes from 7 commits
bad08f7
f0cc7ab
e0e7bcb
1d75689
6165fee
9bbe6cf
ca3e0ee
070ba3d
6776b01
e357075
f25da14
629e6f9
92e211e
4e6dbfd
234d53b
2a1ba54
fc5f8b0
cb45ec0
bbfeed2
32be35b
5149580
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,26 @@ on: | |
permissions: {} | ||
|
||
jobs: | ||
continuous-releases: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "${{ github.actor }}" | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
# fetch all tags which are required for `pnpm release:changelog` | ||
fetch-depth: 0 | ||
- name: Set up pnpm | ||
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | ||
with: | ||
node-version: 18 | ||
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies | ||
- run: npm install -g npm@latest | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it (does it use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yea, because it uses npm pack under the hood and an old version of npm does not work here! |
||
- run: pnpm install:codesandbox | ||
- run: pnpm build:codesandbox | ||
- run: pnpm dlx pkg-pr-new publish 'packages/mui-{base,codemod,core-downloads-tracker,docs,icons-material,lab,material-nextjs,material,material-pigment-css,private-theming,styled-engine,styled-engine-sc,styles,system,types,utils}/build' 'packages-internal/{test-utils,docs-utils,scripts}' 'packages/{mui-babel-macros,markdown}' --template './examples/*' --comment=off --peerDeps | ||
|
||
# Tests dev-only scripts across all supported dev environments | ||
test-dev: | ||
# l10nbot does not affect dev scripts. | ||
|
Uh oh!
There was an error while loading. Please reload this page.