From 46a10f9325305b9d58980029aeb7cd287aa78d93 Mon Sep 17 00:00:00 2001 From: Tristan Date: Sat, 11 Jan 2025 15:41:36 +0000 Subject: [PATCH] Use direction reference to action another really strange quirk but aight --- .github/actions/{maven-build.yml => maven-build/action.yml} | 0 .github/workflows/ci.yml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/actions/{maven-build.yml => maven-build/action.yml} (100%) diff --git a/.github/actions/maven-build.yml b/.github/actions/maven-build/action.yml similarity index 100% rename from .github/actions/maven-build.yml rename to .github/actions/maven-build/action.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5debba7..77c08dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: options: "--user root" steps: - name: "Maven Build (JIT)" - uses: "./.github/actions/maven-build.yml" + uses: "./.github/actions/maven-build" with: BUILD_REVISION: "${{ needs.set_variables.outputs.build_version }}" MAVEN_JOB_ARGS: "verify package" @@ -58,7 +58,7 @@ jobs: options: "--user root" steps: - name: "Maven Build (AOT)" - uses: "./.github/actions/maven-build.yml" + uses: "./.github/actions/maven-build" with: BUILD_REVISION: "${{ needs.set_variables.outputs.build_version }}" MAVEN_JOB_ARGS: "package -Pnative -DskipTests"