We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2909625 commit dc8f1a7Copy full SHA for dc8f1a7
.github/workflows/release.yaml
@@ -59,9 +59,15 @@ jobs:
59
username: ${{ github.actor }}
60
password: ${{ secrets.GITHUB_TOKEN }}
61
62
+ - name: Login to DockerHub
63
+ uses: docker/login-action@v3
64
+ with:
65
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
66
+ password: ${{ secrets.DOCKERHUB_PAT }}
67
+
68
- name: Build and push
69
uses: docker/build-push-action@v6
70
with:
71
context: .
72
push: true
- tags: ghcr.io/jessesimpson36/yamldiff:${{ github.ref_name }}
73
+ tags: ghcr.io/jessesimpson36/yamldiff:${{ github.ref_name }},jessesimpson/yamldiff:${{ github.ref_name }}
0 commit comments