Skip to content

Commit 78fa409

Browse files
Fix publish script
2 parents 9c2c850 + 0a82ee0 commit 78fa409

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,11 @@ jobs:
118118
<<: *darwin-linux-no-cgo
119119
steps:
120120
- checkout
121-
- *setup-docker
121+
- setup_remote_docker
122+
- *install-docker-client
122123
- attach_workspace:
123124
at: /go/src/github.com/palantir/bulldozer
125+
- run: ./godelw dist
124126
- *build-docker-image
125127
- run: ./scripts/publish_docker.sh
126128

@@ -168,4 +170,3 @@ workflows:
168170
only: /^[0-9]+(\.[0-9]+)+(-rc[0-9]+)?(-alpha[0-9]+)?$/
169171
branches:
170172
ignore: /.*/
171-

scripts/publish_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -eu
3+
set -u
44

55
docker login -u "${DOCKERHUB_USERNAME}" -p "${DOCKERHUB_PASSWORD}"
66

0 commit comments

Comments
 (0)