Skip to content

Update controller-gen version #15

Update controller-gen version

Update controller-gen version #15

Workflow file for this run

name: publish
on:
push:
tags:
- '*'
permissions:
actions: read
checks: write
contents: read
packages: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Get TAG
id: get_tag
run: echo TAG=${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
- name: Get Repo Owner
id: get_repo_owner
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Registry
uses: docker/login-action@v2
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
- name: Local build
id: local_build
uses: docker/build-push-action@v2
with:
build-args: |
Version=${{ env.TAG }}
GitCommit=${{ github.sha }}
outputs: "type=registry,push=true"
platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: |
ghcr.io/${{ env.REPO_OWNER }}/registry-creds:${{ github.sha }}
ghcr.io/${{ env.REPO_OWNER }}/registry-creds:${{ env.TAG }}
ghcr.io/${{ env.REPO_OWNER }}/registry-creds:latest