Skip to content

Improve text to install the webhook using yaml resources #30

Improve text to install the webhook using yaml resources

Improve text to install the webhook using yaml resources #30

Workflow file for this run

on:
pull_request:
branches: [ main ]
push:
branches:
- main
jobs:
e2e_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install go 1.16
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Login to Quay.io Hub
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_ROBOT_USER }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Build the container image
run: |
VERSION=$(git rev-parse --short HEAD 2>/dev/null)
docker build -t cert-manager-webhook-godaddy:${VERSION} -f Dockerfile .
TAG_ID=$(docker images -q cert-manager-webhook-godaddy:${VERSION})
docker tag ${TAG_ID} quay.io/snowdrop/cert-manager-webhook-godaddy:${VERSION}
docker tag ${TAG_ID} quay.io/snowdrop/cert-manager-webhook-godaddy:latest
docker push quay.io/snowdrop/cert-manager-webhook-godaddy:${VERSION}
docker push quay.io/snowdrop/cert-manager-webhook-godaddy:latest