Skip to content

Commit bbc3e49

Browse files
ci: remove unneeded echoes (#1683)
1 parent 2712876 commit bbc3e49

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,8 @@ RUN apt-get update && \
8383
WORKDIR /usr/local/src/watcher
8484
RUN --mount=type=secret,id=github-token \
8585
if [ -f /run/secrets/github-token ] && [ -s /run/secrets/github-token ]; then \
86-
echo "Using authenticated GitHub API request"; \
8786
curl -s -H "Authorization: Bearer $(cat /run/secrets/github-token)" https://api.github.com/repos/e-dant/watcher/releases/latest; \
8887
else \
89-
echo "Using unauthenticated GitHub API request"; \
9088
curl -s https://api.github.com/repos/e-dant/watcher/releases/latest; \
9189
fi | \
9290
grep tarball_url | \

alpine.Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,8 @@ RUN apk add --no-cache --virtual .build-deps \
9090
WORKDIR /usr/local/src/watcher
9191
RUN --mount=type=secret,id=github-token \
9292
if [ -f /run/secrets/github-token ] && [ -s /run/secrets/github-token ]; then \
93-
echo "Using authenticated GitHub API request"; \
9493
curl -s -H "Authorization: Bearer $(cat /run/secrets/github-token)" https://api.github.com/repos/e-dant/watcher/releases/latest; \
9594
else \
96-
echo "Using unauthenticated GitHub API request"; \
9795
curl -s https://api.github.com/repos/e-dant/watcher/releases/latest; \
9896
fi | \
9997
grep tarball_url | \

0 commit comments

Comments
 (0)