Skip to content

Commit 73f2679

Browse files
authored
chore: remove prints (#545)
1 parent f1978c3 commit 73f2679

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ jobs:
5454
5555
make build
5656
- name: prepare release
57-
run: echo $LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY != "" && ./scripts/release/prepare-release.sh
57+
run: ./scripts/release/prepare-release.sh
5858
- name: publish
5959
run: |
6060
if [[ "$DRY_RUN" = true ]]; then
6161
./scripts/release/publish-dry-run.sh
6262
else
63-
echo $LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY != "" && ./scripts/release/publish.sh
63+
echo ./scripts/release/publish.sh
6464
fi
6565
env:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.ldrelease/publish.sh

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

3-
echo "brew deploy key is set: " && echo $LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY != ""
43
# the "publish" makefile target pushes the image to Docker
54
$(dirname $0)/run-publish-target.sh publish
65

.ldrelease/run-publish-target.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ cat "${LD_RELEASE_SECRETS_DIR}/docker_token" | sudo docker login --username "${d
2020
# Set github token to be used in releaser
2121
GITHUB_TOKEN=$(cat ${LD_RELEASE_SECRETS_DIR}/github_token)
2222

23-
echo "brew deploy key is set: " && echo $LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY != ""
2423
sudo PATH=${PATH} GITHUB_TOKEN=${GITHUB_TOKEN} LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY=${LAUNCHDARKLY_HOMEBREW_TAP_DEPLOY_KEY} make $TARGET
2524

2625
# Goreleaser puts all the artifacts in ./dist - copying them to $LD_RELEASE_ARTIFACTS_DIR

0 commit comments

Comments
 (0)