Skip to content

deps(dependabot): bump golangci/golangci-lint-action from 6.1.0 to 6.… #1

deps(dependabot): bump golangci/golangci-lint-action from 6.1.0 to 6.…

deps(dependabot): bump golangci/golangci-lint-action from 6.1.0 to 6.… #1

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-publisher-proxy
dockerfile: Dockerfile
context: .
tags: ${{ needs.compute-tags.outputs.tags }}