Skip to content

Merge pull request #64 from dana-team/dependabot/go_modules/sigs.k8s.… #18

Merge pull request #64 from dana-team/dependabot/go_modules/sigs.k8s.…

Merge pull request #64 from dana-team/dependabot/go_modules/sigs.k8s.… #18

Workflow file for this run

name: post-merge
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
REPOSITORY_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
name: Build and push image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
run: make docker-build docker-push IMG=${{ env.REGISTRY }}/${{ env.REPOSITORY_NAME }}:main