mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
chore: have local and remote tag name the same
This commit is contained in:
parent
6f2eb3cbb1
commit
ec482796a9
@ -15,6 +15,10 @@ const incs = {
|
||||
patch: argv.dev
|
||||
};
|
||||
|
||||
const type = ['production', 'staging', 'dev']
|
||||
.filter(k => argv[k])
|
||||
.reduce((t, name) => name, '');
|
||||
|
||||
const exec = (...args) => {
|
||||
const cp = execa(...args);
|
||||
|
||||
@ -114,10 +118,6 @@ const tasks = new Listr(
|
||||
{
|
||||
title: 'Tag',
|
||||
task: async () => {
|
||||
const type = ['production', 'staging', 'dev']
|
||||
.filter(k => argv[k])
|
||||
.reduce((t, name) => name, '');
|
||||
|
||||
const lastTag = await execa.stdout('git', [
|
||||
'describe',
|
||||
'--tags',
|
||||
@ -147,7 +147,8 @@ const tasks = new Listr(
|
||||
},
|
||||
{
|
||||
title: 'Push',
|
||||
task: () => exec('git', ['push', 'origin', `${pkg.name}@${pkg.version}`])
|
||||
task: () =>
|
||||
exec('git', ['push', 'origin', `${pkg.name}-${type}@${pkg.version}`])
|
||||
}
|
||||
],
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user