Skip to content

deps(dependabot): bump k8s.io/apimachinery from 0.31.1 to 0.31.2 (#672) #28

deps(dependabot): bump k8s.io/apimachinery from 0.31.1 to 0.31.2 (#672)

deps(dependabot): bump k8s.io/apimachinery from 0.31.1 to 0.31.2 (#672) #28

name: Push Build Image
on:
push:
branches:
- "main"
- "release-*"
paths-ignore:
- "docs/**"
permissions:
id-token: write # This is required for requesting the JWT token
contents: read # This is required for actions/checkout
jobs:
compute-tags:
runs-on: ubuntu-latest
outputs:
tags: ${{ steps.get_tag.outputs.TAGS }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get the latest tag
id: get_tag
run: |
{
echo 'TAGS<<EOF'
echo "${{ github.sha }}"
echo "${{ github.ref_name}}"
echo EOF
} >> "$GITHUB_OUTPUT"
build:
needs: compute-tags
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: eventing-manager
dockerfile: Dockerfile
context: .
tags: ${{ needs.compute-tags.outputs.tags }}