File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed 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)
2
2
runs :
3
3
using : composite
4
4
steps :
5
5
- 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
7
9
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 47
47
# needs: [ 'lint','test' ]
48
48
steps :
49
49
- uses : actions/checkout@v5
50
- - uses : ./.github/actions/setup
51
- id : setup
52
50
- uses : ./.github/actions/dockerhub-login
51
+ - id : setup
52
+ uses : ./.github/actions/setup
53
53
- run : poetry build
54
54
- run : ci/run_tests.sh
55
55
env :
You can’t perform that action at this time.
0 commit comments