dpl 1.8.8.travis.1201.4 → 1.8.8.travis.1202.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/dpl/provider/azure_webapps.rb +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OTAwOTQwOGU3N2EwNDAxZDVhNjFkNmZjMDQ4MmVkNWE2ZTY3NmFmYg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MjExZWUyMGUxMjAwY2FiOWY2MjlmNmJiMTViZDM0Y2U5NmJlY2UzYQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjI1ZTU4YTZiMjZjODc0MTdiOGY4YmJlYWM0MWJiZDNlODEwNmJhODlkMzQ4
|
|
10
|
+
NWQ0M2YwMjVhNWZmMDE4ZTUzZmU5ZjFhMWI2ZGYyYzM4MzYwNDExNTQ5MmNm
|
|
11
|
+
MDQ3Y2U1Yzg3ZmNkODgxMjdiOGI3Y2M2NTQ5NmVjM2ZkOWM5MDg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NTFiY2RjYzJkMWZhMTAyY2RhMjE0MzhmYTNlY2E1ODRiZjAzNTRiOGJmMzdh
|
|
14
|
+
MjI2ZjQ5YTBkNGFmNDNhMDRjY2UwNGJjNGMzZTA3NjlkYTA1MjI0NjZjYWRl
|
|
15
|
+
ODExMTEyODQxNWU3ZGE0NjU0ZmQ3NTk0YzdhMThiYjE3YWRlY2I=
|
|
@@ -30,6 +30,13 @@ module DPL
|
|
|
30
30
|
def push_app
|
|
31
31
|
log "Deploying to Azure Web App '#{config['slot'] || config['site']}'"
|
|
32
32
|
|
|
33
|
+
if !!options[:skip_cleanup]
|
|
34
|
+
log "Skipping Cleanup"
|
|
35
|
+
context.shell "git checkout master"
|
|
36
|
+
context.shell "git add . --all --force"
|
|
37
|
+
context.shell "git commit -m \"Skip Cleanup Commit\""
|
|
38
|
+
end
|
|
39
|
+
|
|
33
40
|
if !!options[:verbose]
|
|
34
41
|
context.shell "git push --force --quiet #{git_target} master"
|
|
35
42
|
else
|