Skip to content

Commit cd9bd6b

Browse files
committed
fix check
1 parent a80fe35 commit cd9bd6b

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/notify.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- name: Log in to Docker Hub
15-
run: |
16-
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
14+
- name: Check out the repository
15+
uses: actions/checkout@v4
1716

1817
- name: Set up Docker Buildx
1918
uses: docker/setup-buildx-action@v2
2019

20+
- name: Log in to Docker Hub
21+
run: |
22+
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
23+
2124
- name: Build and push Docker image
2225
run: |
2326
docker buildx build \

0 commit comments

Comments
 (0)