Skip to content

Commit 4d53e26

Browse files
authored
Merge pull request #23 from rubberduck-vba/p0
introduce delay to let IIS shut down
2 parents c09359f + b827050 commit 4d53e26

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/dotnet-cd-prod.yml

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
stop-webapppool -name "api-prod"
6363
stop-iissite -name api-prod -confirm: $false
6464
stop-iissite -name rubberduckvba-prod -confirm: $false
65+
start-sleep -seconds 10
6566
copy-item C:/pub/webroot/rubberduckvba.com/* C:/inetpub/wwwroot/rubberduckvba.com -Recurse -Force
6667
copy-item C:/inetpub/appsettings.prod.json C:/inetpub/wwwroot/rubberduckvba.com/appsettings.json -Force
6768
copy-item C:/inetpub/__Web.config C:/inetpub/wwwroot/rubberduckvba.com/wwwroot/browser/Web.config -Force

.github/workflows/dotnet-cd.yml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
stop-webapppool -name "rubberduckvba"
6464
stop-iissite -name api -confirm: $false
6565
stop-iissite -name rubberduckvba -confirm: $false
66+
start-sleep -seconds 10
6667
copy-item C:/pub/webroot/test.rubberduckvba.com/* C:/inetpub/wwwroot/test.rubberduckvba.com -Recurse -Force
6768
copy-item C:/inetpub/appsettings.test.json C:/inetpub/wwwroot/test.rubberduckvba.com/appsettings.json -Force
6869
copy-item C:/inetpub/__Web.config C:/inetpub/wwwroot/test.rubberduckvba.com/wwwroot/browser/Web.config -Force

0 commit comments

Comments
 (0)