Skip to content

chore: add AGE printer column (#77) #44

chore: add AGE printer column (#77)

chore: add AGE printer column (#77) #44

Workflow file for this run

name: Docker push
on:
push:
branches:
- 'main'
env:
IMG_REPOSITORY : ghcr.io/nirmata/kyverno-aws-adapter
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- name: Make all
run: |
set -e
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
IMG="$IMG_REPOSITORY:$GITHUB_SHA" make docker-buildx