Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit aeecf1a

Browse files
committed
Fix errored conditional in deploy.sh release
1 parent c63b4eb commit aeecf1a

File tree

3 files changed

+8
-41
lines changed

3 files changed

+8
-41
lines changed

CHANGELOG.md

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
1-
## 3.6.0-p12
2-
+ **Changes:** https://github.com/elgalu/docker-selenium/compare/3.6.0-p11...3.6.0-p12 (2017-11-02)
3-
+ Leo Gallucci (7):
4-
* [a7a2446] Automate releasing from master branch on tagged commits
5-
* [9c9d09e] Simplify CONTRIBUTING.md and local testing
6-
* [6654655] Allow to run python_test to only take the grid screen shot
7-
* [92434a1] Fix PREV_SELENIUM_VERSION in deploy.sh
8-
* [e1982a6] Fix bump_setup_and_checks() and add travis_tag_checks()
9-
* [2251995] Tag latest should not trigger a push and release
10-
* [d98e82e] Move from TravisCI deployments to conditional stages
11-
+ **Image tag details:**
12-
+ Selenium version: 3.6.0 (6fbf3ec767)
13-
+ Chrome stable: 62.0.3202.75
14-
+ Firefox stable: 56.0.2
15-
+ Geckodriver: 0.19.0
16-
+ Chromedriver: 2.33.506092 (733a02544d189eeb751fe0d7ddca79a0ee28cce4)
17-
+ Java: OpenJDK Java 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11
18-
+ Default Timezone: Europe/Berlin
19-
+ FROM ubuntu:xenial-20171006
20-
+ Python: 3.5.2
21-
+ Tested on kernel CI host: 4.4.0-93-generic x86_64
22-
+ Built at CI host with: Docker version 17.03.1, build c6d412e
23-
+ Built at CI host with: Docker Compose version 1.13.0, build 1719ceb
24-
+ Image version: 3.6.0-193
25-
+ Image size: 1.4 GB
26-
+ Digest: sha256:f2bd99e90eabbc805e5a48e7f3a5e4ed4c6dc5c4a3af1cbf418aa2d1af263d32
27-
281
## 3.6.0-p11
292
+ **Changes:** https://github.com/elgalu/docker-selenium/compare/3.6.0-p10...3.6.0-p11 (2017-11-01)
303
+ Leo Gallucci (1):

LATEST_RELEASE.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
## 3.6.0-p12
2-
+ **Changes:** https://github.com/elgalu/docker-selenium/compare/3.6.0-p11...3.6.0-p12 (2017-11-02)
3-
+ Leo Gallucci (7):
4-
* [a7a2446] Automate releasing from master branch on tagged commits
5-
* [9c9d09e] Simplify CONTRIBUTING.md and local testing
6-
* [6654655] Allow to run python_test to only take the grid screen shot
7-
* [92434a1] Fix PREV_SELENIUM_VERSION in deploy.sh
8-
* [e1982a6] Fix bump_setup_and_checks() and add travis_tag_checks()
9-
* [2251995] Tag latest should not trigger a push and release
10-
* [d98e82e] Move from TravisCI deployments to conditional stages
1+
## 3.6.0-p11
2+
+ **Changes:** https://github.com/elgalu/docker-selenium/compare/3.6.0-p10...3.6.0-p11 (2017-11-01)
3+
+ Leo Gallucci (1):
4+
* [ff34979] Fix build: match wget version in TravisCI
115
+ **Image tag details:**
126
+ Selenium version: 3.6.0 (6fbf3ec767)
137
+ Chrome stable: 62.0.3202.75
@@ -21,7 +15,7 @@
2115
+ Tested on kernel CI host: 4.4.0-93-generic x86_64
2216
+ Built at CI host with: Docker version 17.03.1, build c6d412e
2317
+ Built at CI host with: Docker Compose version 1.13.0, build 1719ceb
24-
+ Image version: 3.6.0-193
2518
+ Image size: 1.4 GB
26-
+ Digest: sha256:f2bd99e90eabbc805e5a48e7f3a5e4ed4c6dc5c4a3af1cbf418aa2d1af263d32
19+
+ Digest: sha256:b39c39090e01c6ee3b9a1b61d5c60a66398a7c2febf70e28a0fe262a490eb205
20+
+ Image ID: sha256:1b013d7ca34a6612e81ecad7970c4054c8465adebe524a105e731b3786f0a639
2721

ci_cd/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ add_LATEST_RELEASE_to_top_of_CHANGELOG() {
104104
}
105105

106106
travis_tag_checks() {
107-
if grep -Po '(?<=## )([a-z0-9\.-]+)' CHANGELOG.md | grep "${TRAVIS_TAG}"; then
108-
die "TRAVIS_TAG='${TRAVIS_TAG}' is already present in CHANGELOG.md"
107+
if ! grep -Po '(?<=## )([a-z0-9\.-]+)' CHANGELOG.md | grep "${TRAVIS_TAG}"; then
108+
die "TRAVIS_TAG='${TRAVIS_TAG}' should be already present in CHANGELOG.md"
109109
fi
110110

111111
if hub release | grep "${TRAVIS_TAG}"; then

0 commit comments

Comments
 (0)