Skip to content

Commit

Permalink
update drone_publish_tag to not use so much concurrency with debs
Browse files Browse the repository at this point in the history
  • Loading branch information
kminehart committed Aug 31, 2023
1 parent c5d99cf commit 44b33f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/drone_publish_tag_pro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ dagger run --silent go run ./cmd deb \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | grep -v arm-6 | awk '{print "--package=" $0}') \
--checksum \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} > debs.txt &
--gcp-service-account-key-base64=${GCP_KEY_BASE64} > debs.txt

# Use the armv7 package to build the `rpi` specific version.
dagger run --silent go run ./cmd deb \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | grep arm-7 | awk '{print "--package=" $0}') \
--name=grafana-pro-rpi \
--checksum \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} >> debs.txt &
--gcp-service-account-key-base64=${GCP_KEY_BASE64} >> debs.txt

# Build a docker image for all .tar.gz packages
dagger run --silent go run ./cmd docker \
Expand Down

0 comments on commit 44b33f5

Please sign in to comment.