Skip to content

Commit

Permalink
Fix publish dev CI job (#455)
Browse files Browse the repository at this point in the history
Publish dev does not need the collector to be packaged up for different
platforms. It only needs the binaries that it can publish as docker
images.
  • Loading branch information
owais authored Jul 15, 2020
1 parent d1598f3 commit 77dfcba
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,12 @@ jobs:
executor: golang
steps:
- restore_workspace
- verify_dist_files_exist
- verify_dist_files_exist:
files: |
bin/otelcontribcol_darwin_amd64
bin/otelcontribcol_linux_arm64
bin/otelcontribcol_linux_amd64
bin/otelcontribcol_windows_amd64.exe
- setup_remote_docker
- publish_docker_images:
repo: opentelemetry-collector-contrib-dev
Expand Down Expand Up @@ -495,4 +500,4 @@ jobs:
fi
- persist_to_workspace:
root: ~/
paths: project/dist/*.<< parameters.package_type >>
paths: project/dist/*.<< parameters.package_type >>

0 comments on commit 77dfcba

Please sign in to comment.