File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : login to Dockerhub (to prevent image trottling)
1+ name : login to Dockerhub (to prevent image pull trottling)
22runs :
33 using : composite
44 steps :
55 - name : docker login
6- run : bash -ce 'echo "$DOCKERHUB_PASSWORD" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin'
6+ run : |
7+ docker login -u "$DOCKERHUB_USERNAME" --password-stdin <<< "$DOCKERHUB_PASSWORD"
8+ shell : bash
79 env :
8- DOCKERHUB_PASSWORD : {{ secrets.DOCKERHUB_PASSWORD }}
9- DOCKERHUB_USERNAME : {{ secrets.DOCKERHUB_USERNAME }}
10+ DOCKERHUB_PASSWORD : $ {{ secrets.DOCKERHUB_PASSWORD }}
11+ DOCKERHUB_USERNAME : $ {{ secrets.DOCKERHUB_USERNAME }}
Original file line number Diff line number Diff line change 4747 # needs: [ 'lint','test' ]
4848 steps :
4949 - uses : actions/checkout@v5
50- - uses : ./.github/actions/setup
51- id : setup
5250 - uses : ./.github/actions/dockerhub-login
51+ - id : setup
52+ uses : ./.github/actions/setup
5353 - run : poetry build
5454 - run : ci/run_tests.sh
5555 env :
You can’t perform that action at this time.
0 commit comments