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"