ci: Fix potentially problematic `increment_version` value

This commit is contained in:
Christian Koop 2024-02-26 12:13:45 +01:00
parent 91f4d2cf02
commit 50d1a41acd
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ jobs:
with: with:
append_snapshot: ${{ github.ref_type == 'tag' && 'false' || 'true' }} append_snapshot: ${{ github.ref_type == 'tag' && 'false' || 'true' }}
version: ${{ github.ref_type == 'tag' && github.ref_name || '' }} version: ${{ github.ref_type == 'tag' && github.ref_name || '' }}
increment_version: ${{ github.ref_type == 'tag' && '' || 'patch' }} increment_version: ${{ github.ref_type != 'tag' && 'patch' || '' }}
increment_version_only_if_not_snapshot_version: ${{ github.ref == 'refs/heads/development' && 'true' || 'false' }} increment_version_only_if_not_snapshot_version: ${{ github.ref == 'refs/heads/development' && 'true' || 'false' }}
- name: Build with Maven - name: Build with Maven