update build script for azure
This commit is contained in:
parent
fe0d19a863
commit
9079b799ae
2 changed files with 4 additions and 4 deletions
|
@ -10,11 +10,11 @@ Write-Host -ForegroundColor Blue "Creating new build..";
|
||||||
yarn build;
|
yarn build;
|
||||||
|
|
||||||
Write-Host -ForegroundColor Blue "Initializing git repository";
|
Write-Host -ForegroundColor Blue "Initializing git repository";
|
||||||
git config --local user.name "BotPatty";
|
|
||||||
git config --local user.email "ci@zint.ch";
|
|
||||||
$Remote = (git remote get-url origin);
|
$Remote = (git remote get-url origin);
|
||||||
Set-Location "./docs/.vuepress/dist";
|
Set-Location "./docs/.vuepress/dist";
|
||||||
git init;
|
git init;
|
||||||
|
git config --local user.name "BotPatty";
|
||||||
|
git config --local user.email "ci@zint.ch";
|
||||||
git remote add origin $Remote;
|
git remote add origin $Remote;
|
||||||
git add .;
|
git add .;
|
||||||
git commit -m "auto-deployment";
|
git commit -m "auto-deployment";
|
|
@ -39,7 +39,7 @@
|
||||||
v-model="selectedRoute"
|
v-model="selectedRoute"
|
||||||
handle=".route-drag"
|
handle=".route-drag"
|
||||||
ghost-class="ghost"
|
ghost-class="ghost"
|
||||||
@end="onDrageEnd"
|
@end="onDragEnd"
|
||||||
>
|
>
|
||||||
<li v-for="(level, index) in selectedRoute">
|
<li v-for="(level, index) in selectedRoute">
|
||||||
<div class="route-drag">≡</div>
|
<div class="route-drag">≡</div>
|
||||||
|
@ -194,7 +194,7 @@ export default {
|
||||||
if (ending) this.postGameSelection;
|
if (ending) this.postGameSelection;
|
||||||
this.updateCode();
|
this.updateCode();
|
||||||
},
|
},
|
||||||
onDrageEnd() {
|
onDragEnd() {
|
||||||
this.updateCode();
|
this.updateCode();
|
||||||
},
|
},
|
||||||
onClearList() {
|
onClearList() {
|
||||||
|
|
Loading…
Reference in a new issue