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;
|
||||
|
||||
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);
|
||||
Set-Location "./docs/.vuepress/dist";
|
||||
git init;
|
||||
git config --local user.name "BotPatty";
|
||||
git config --local user.email "ci@zint.ch";
|
||||
git remote add origin $Remote;
|
||||
git add .;
|
||||
git commit -m "auto-deployment";
|
|
@ -39,7 +39,7 @@
|
|||
v-model="selectedRoute"
|
||||
handle=".route-drag"
|
||||
ghost-class="ghost"
|
||||
@end="onDrageEnd"
|
||||
@end="onDragEnd"
|
||||
>
|
||||
<li v-for="(level, index) in selectedRoute">
|
||||
<div class="route-drag">≡</div>
|
||||
|
@ -194,7 +194,7 @@ export default {
|
|||
if (ending) this.postGameSelection;
|
||||
this.updateCode();
|
||||
},
|
||||
onDrageEnd() {
|
||||
onDragEnd() {
|
||||
this.updateCode();
|
||||
},
|
||||
onClearList() {
|
||||
|
|
Loading…
Reference in a new issue