Skip to content

Commit b53a0f6

Browse files
fix: 🐛 special chars in password needed to be escaped
1 parent eb255e7 commit b53a0f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- stage: "Build and Push Docker Image"
1616
name: "Build and Push Docker Image"
1717
script:
18-
- docker build -t jaskaransarkaria/timer-server:test2 .
18+
- docker build -t jaskaransarkaria/timer-server:"$TRAVIS_TAG" .
1919
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
20-
- docker push jaskaransarkaria/timer-server:test2
20+
- docker push jaskaransarkaria/timer-server:"$TRAVIS_TAG"
2121

2222
stages:
2323
- Tests and Linting
2424
- name: "Build and Push Docker Image"
25-
# if: tag IS present
25+
if: tag IS present

0 commit comments

Comments
 (0)