Skip to content

Commit

Permalink
fix prod build version check
Browse files Browse the repository at this point in the history
fix prod build version check
  • Loading branch information
PeterWarren authored Dec 20, 2023
1 parent 6094489 commit f65b1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-prod-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
echo "WAR_VERSION=$(echo "${{ github.ref_name }}" | sed 's/v//')" >> "$GITHUB_ENV"
- name: Check version numbers match
if: ${{ env.WAR_VERSION}} != ${{ env.RELEASE_VERSION }}
if: ${{ env.WAR_VERSION != env.RELEASE_VERSION }}
run: exit 1

- name: Build with Maven
Expand Down

0 comments on commit f65b1e0

Please sign in to comment.