ci: Fix potentially problematic increment_version value

This commit is contained in:
Christian Koop 2024-02-26 12:11:24 +01:00
parent b96ba7444c
commit d382493d1b
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3

View File

@ -35,7 +35,7 @@ jobs:
with:
append_snapshot: ${{ github.ref_type == 'tag' && 'false' || 'true' }}
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' }}
- name: Build with Maven