Skip to content

Commit 03d0ed3

Browse files
author
Simon Dumas
committed
Add docker login before running SBT
1 parent 121d707 commit 03d0ed3

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/ci-delta-plugins.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,7 @@ jobs:
3737
sudo echo "127.0.0.1 other.my-domain.com" | sudo tee -a /etc/hosts
3838
sudo echo "127.0.0.1 bucket.my-domain.com" | sudo tee -a /etc/hosts
3939
sudo echo "127.0.0.1 bucket2.my-domain.com" | sudo tee -a /etc/hosts
40-
sudo echo "127.0.0.1 bucket3.my-domain.com" | sudo tee -a /etc/hosts
41-
- name: Login to Docker Hub
42-
uses: docker/login-action@v3
43-
with:
44-
username: ${{ secrets.DOCKER_USER }}
45-
password: ${{ secrets.DOCKER_PASS }}
4640
- name: Run unit tests
4741
run: |
42+
echo ${{ secrets.DOCKER_PASS }} | docker login --username ${{ secrets.DOCKER_USER }} --password-stdin
4843
sbt -Dsbt.color=always -Dsbt.supershell=false clean plugins-unit-tests-with-coverage

0 commit comments

Comments
 (0)