From cfbf8c70b7118b58aab40870902eaefc210f2e0e Mon Sep 17 00:00:00 2001 From: "Ethan N. Paul" Date: Tue, 29 Aug 2017 11:50:11 -0400 Subject: [PATCH] Updated build script, removed tag to prevent run --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bd85d20..dadbffc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,8 @@ sync_website: script: - - cd "C:\inetpub\wwwroot\enpaul.net" - - git pull + - New-Item -Path "C:\inetpub\wwwroot\" -Name enpaul.new -ItemType Directory -Force + - Copy-Item -Path .\* -Destination "C:\inetpub\wwwroot\enpaul.new\" -Force -Recurse + - Rename-Item -path .\CKCADTech -NewName CKCAD -Force + - Remove-Item -path "C:\inetpub\wwwroot\enpaul.net\*" -Recurse -Force tags: - - web + - null