Commit b6c1a063 by Stephanie Closson Committed by GitHub

must publish a dist folder as well (#23152)

parent 1a5bd303
......@@ -69,7 +69,9 @@ const prepareRelease = useSpinner<any>('Preparing release', async ({ dryrun, ver
['git', ['config', 'user.email', GIT_EMAIL]],
['git', ['config', 'user.name', GIT_USERNAME]],
await checkoutBranch(`release-${pluginVersion}`),
['cp', ['-rf', distContentDir, 'dist'], { dryrun }],
['git', ['add', '--force', distDir], { dryrun }],
['git', ['add', '--force', 'dist'], { dryrun }],
[
'git',
['commit', '-m', `automated release ${pluginVersion} [skip ci]`],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment