From 0c4bbe19223f531bf85dc554d2acc0ded1b196b5 Mon Sep 17 00:00:00 2001 From: Santanu Sinha Date: Mon, 8 Apr 2024 10:11:07 +0530 Subject: [PATCH] Fix in workflow syntax --- .github/workflows/release-on-tag.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-on-tag.yml b/.github/workflows/release-on-tag.yml index 28d4300..6d9aa72 100644 --- a/.github/workflows/release-on-tag.yml +++ b/.github/workflows/release-on-tag.yml @@ -28,13 +28,13 @@ jobs: - uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - cache: maven - - name: Build with Maven - run: mvn -B package --file pom.xml + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn -B package - name: Log in to the Container registry