We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4675762 commit ccb72a4Copy full SHA for ccb72a4
.github/workflows/docs.yml
@@ -44,13 +44,13 @@ jobs:
44
- name: "Login to Docker Hub"
45
uses: "docker/login-action@v3"
46
with:
47
- registry: ${{ env.REGISTRY }}
48
- username: ${{ github.actor }}
49
- password: ${{ secrets.GITHUB_TOKEN }}
+ registry: "${{ env.REGISTRY }}"
+ username: "${{ github.actor }}"
+ password: "${{ secrets.GITHUB_TOKEN }}"
50
51
- name: "Build and push"
52
uses: "docker/build-push-action@v5"
53
54
context: "build/docs"
55
push: true
56
- tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
+ tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest"
0 commit comments