Skip to content

add builds using ga workflows (#89) #1

add builds using ga workflows (#89)

add builds using ga workflows (#89) #1

Workflow file for this run

name: build (push)
on:
push:
branches: [ "main", "release-*" ]
tags:
- '^v?\d+\.\d+\.\d+(?:-.*)?$'
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-operator:
needs: compute-tag

Check failure on line 32 in .github/workflows/build-push.yaml

View workflow run for this annotation

GitHub Actions / build (push)

Invalid workflow file

The workflow is not valid. .github/workflows/build-push.yaml (Line: 32, Col: 12): Job 'build-operator' depends on unknown job 'compute-tag'. .github/workflows/build-push.yaml (Line: 39, Col: 12): Job 'build-registry-init' depends on unknown job 'compute-tag'.
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: dockerregistry-operator
dockerfile: components/operator/Dockerfile
tags: ${{ needs.compute-tag.outputs.tag }}
build-registry-init:
needs: compute-tag
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: registry-init
dockerfile: components/registry-init/Dockerfile
tags: ${{ needs.compute-tag.outputs.tag }}