We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a80fe35 commit cd9bd6bCopy full SHA for cd9bd6b
1 file changed
.github/workflows/notify.yaml
@@ -11,13 +11,16 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - name: Log in to Docker Hub
15
- run: |
16
- echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
+ - name: Check out the repository
+ uses: actions/checkout@v4
17
18
- name: Set up Docker Buildx
19
uses: docker/setup-buildx-action@v2
20
+ - name: Log in to Docker Hub
21
+ run: |
22
+ echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
23
+
24
- name: Build and push Docker image
25
run: |
26
docker buildx build \
0 commit comments