Integration Test Changes

This commit is contained in:
James Ives 2020-01-11 19:30:07 -05:00
parent 8e9a3f08b0
commit ab1c92261e
3 changed files with 3 additions and 5 deletions

View File

@ -5,10 +5,8 @@ on:
push:
branches:
- dev
pull_request:
branches:
- releases/v3
- releases/v3-test
jobs:
# Deploys using checkout@v1 with an ACCESS_TOKEN.

View File

@ -34,7 +34,7 @@ function init() {
yield util_1.execute(`git init`, constants_1.workspace);
yield util_1.execute(`git config user.name ${constants_1.action.name}`, constants_1.workspace);
yield util_1.execute(`git config user.email ${constants_1.action.email}`, constants_1.workspace);
yield util_1.execute(`git fetch`, constants_1.workspace);
yield util_1.execute(`git pull ${constants_1.repositoryPath}`, constants_1.workspace);
}
catch (error) {
core.setFailed(`There was an error initializing the repository: ${error}`);

View File

@ -22,7 +22,7 @@ export async function init(): Promise<any> {
await execute(`git init`, workspace);
await execute(`git config user.name ${action.name}`, workspace);
await execute(`git config user.email ${action.email}`, workspace);
await execute(`git fetch`, workspace);
await execute(`git pull ${repositoryPath}`, workspace);
} catch (error) {
core.setFailed(`There was an error initializing the repository: ${error}`);
} finally {