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 ed60b11 commit 87433abCopy full SHA for 87433ab
.github/workflows/main.yml
@@ -19,3 +19,16 @@ jobs:
19
20
- name: Build
21
run: make build
22
+
23
+ - name: Login to GitHub Container Registry
24
+ uses: docker/login-action@v1
25
+ with:
26
+ registry: ghcr.io
27
+ username: ${{ github.actor }}
28
+ password: ${{ secrets.GITHUB_TOKEN }}
29
30
+ - name: Tag docker image
31
+ run: docker tag cert-manager-webhook-vkcloud:latest ghcr.io/vasiliy-t/cert-manager-webhook-vkcloud:latest
32
33
+ - name: Publish docker image to Github Container Registry
34
+ run: docker push ghcr.io/vasiliy-t/cert-manager-webhook-vkcloud:latest
0 commit comments