From df5f513c6958a7703d8a6e191e893e7db8709a25 Mon Sep 17 00:00:00 2001 From: xstefank Date: Mon, 3 Feb 2025 08:50:49 +0100 Subject: [PATCH] fix: metadata actions should work with locally checkouted project.yml Signed-off-by: xstefank --- .github/workflows/release-update-quarkus-platform.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-update-quarkus-platform.yml b/.github/workflows/release-update-quarkus-platform.yml index a5fb79d3..5f03905e 100644 --- a/.github/workflows/release-update-quarkus-platform.yml +++ b/.github/workflows/release-update-quarkus-platform.yml @@ -27,12 +27,17 @@ jobs: quarkus-platform-branches: ${{steps.qosdk-metadata.outputs.quarkus_platform_branches}} steps: + - uses: actions/checkout@v4 + with: + ref: ${{github.event.inputs.tag || github.ref_name}} + - uses: radcortez/project-metadata-action@main name: Retrieve project metadata id: metadata with: github-token: ${{secrets.GITHUB_TOKEN}} metadata-file-path: '.github/project.yml' + local-file: true - name: Parse QOSDK metadata id: qosdk-metadata