Skip to content

Commit

Permalink
Merge branch 'release/v1.1.0' into feature/#9
Browse files Browse the repository at this point in the history
  • Loading branch information
technote-space committed Aug 31, 2019
2 parents bdccba3 + 119ea80 commit 6da01c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/github.ts
Expand Up @@ -25,10 +25,10 @@ export const push = async (files: string[], octokit: GitHub, context: Context):
signale.info('>> Creating tree...');
const tree = await createTree(blobs, octokit, context);

signale.info('>> Creating commit...');
signale.info('>> Creating commit... [%s]', tree.data.sha);
const commit = await createCommit(tree, octokit, context);

signale.info('>> Updating ref...');
signale.info('>> Updating ref... [%s] [%s]', getRefForUpdate(context), commit.data.sha);
await updateRef(commit, octokit, context);
return true;
};
Expand Down

0 comments on commit 6da01c0

Please sign in to comment.