Skip to content

Commit f60a8d3

Browse files
committed
[.github/workflow/rust.yml] Add docker credentials to avoid rate limit
To avoid errors such ``` Error toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit ``` we should add login to our Scylladb docker hub Adding it
1 parent eb14ca8 commit f60a8d3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
run: |
2727
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"
2828
docker compose -f test/cluster/docker-compose.yml up -d --wait
29+
env:
30+
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
31+
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
2932
- name: Update rust toolchain
3033
run: rustup update
3134
- name: Print rustc version

0 commit comments

Comments
 (0)