We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121d707 commit 03d0ed3Copy full SHA for 03d0ed3
.github/workflows/ci-delta-plugins.yml
@@ -37,12 +37,7 @@ jobs:
37
sudo echo "127.0.0.1 other.my-domain.com" | sudo tee -a /etc/hosts
38
sudo echo "127.0.0.1 bucket.my-domain.com" | sudo tee -a /etc/hosts
39
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 }}
46
- name: Run unit tests
47
run: |
+ echo ${{ secrets.DOCKER_PASS }} | docker login --username ${{ secrets.DOCKER_USER }} --password-stdin
48
sbt -Dsbt.color=always -Dsbt.supershell=false clean plugins-unit-tests-with-coverage
0 commit comments