fix: Test release

releases/v3
Tycho Bokdam 2019-10-18 11:01:26 +02:00
parent a85634b8c7
commit c8e9ea6338
No known key found for this signature in database
GPG Key ID: A0FAE77C8CDF33C7
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
const core = require('@actions/core')
const exec = require('@actions/exec') const exec = require('@actions/exec')
const git = command => new Promise(async(resolve, reject) => { const git = command => new Promise(async(resolve, reject) => {
@ -16,6 +17,7 @@ const git = command => new Promise(async(resolve, reject) => {
} }
try { try {
core.info(`Exec: git ${command}`)
await exec.exec(`git ${command}`, options) await exec.exec(`git ${command}`, options)
resolve(myOutput) resolve(myOutput)