From 695b17efcceb3fb2d80fbb40c4d4f7fd6671b156 Mon Sep 17 00:00:00 2001 From: Jean Luc Szpyrka Date: Thu, 12 Sep 2024 07:27:07 +0200 Subject: [PATCH] id must be unique among the repo --- .github/workflows/no_conda.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/no_conda.yml b/.github/workflows/no_conda.yml index afd8c2877..331272270 100644 --- a/.github/workflows/no_conda.yml +++ b/.github/workflows/no_conda.yml @@ -13,20 +13,20 @@ jobs: steps: - name: Checkout of head - id: ci-maven-build-checkout + id: ci-noconda-maven-build-checkout uses: actions/checkout@v4 - name: Set up JDK ${{env.JAVA_VERSION}} - id: ci-maven-build-checkout + id: ci-noconda-maven-build-checkout uses: actions/setup-java@v3 with: java-version: ${{env.JAVA_VERSION}} cache: maven - name: Maven build - id: ci-maven-build + id: ci-noconda-maven-build run: | mvn clean package - name: Final Step - id: ci-final-step + id: ci-noconda-final-step run: | echo "This job's status is ${{ job.status }}."