mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
9 lines
289 B
JavaScript
9 lines
289 B
JavaScript
import shell from 'shelljs';
|
|
import { options } from './utils/options.mjs';
|
|
|
|
const version = options.release;
|
|
|
|
shell.echo(`Publishing version: ${version}`);
|
|
|
|
// eslint-disable-next-line promise/valid-params,@typescript-eslint/no-floating-promises
|
|
import('./dispatch-release.mjs').catch();
|