|
34 | 34 |
|
35 | 35 | env:
|
36 | 36 | # Enable DEBUG flag either according to the tag release or manual override
|
37 |
| - UNICORN_DEBUG: ${{ inputs.debugMode != '' && inputs.debugMode || startsWith(github.ref, 'refs/tags') && '0' || contains(github.event.head_commit.message, 'CI(release)') && '0' || '1' }} |
| 37 | + UNICORN_DEBUG: ${{ inputs.debugMode != '' && inputs.debugMode || (startsWith(github.ref, 'refs/tags') && !startsWith(github.ref, 'refs/tags/v')) && '0' || contains(github.event.head_commit.message, 'CI(release)') && '0' || '1' }} |
38 | 38 |
|
39 | 39 | jobs:
|
40 | 40 | # job to be executed for every push - testing purpose
|
@@ -218,7 +218,7 @@ jobs:
|
218 | 218 | - { os: macos-latest, arch: arm64, cibw_build: 'cp*', cibw_skip: '*36* *37* *38*' }
|
219 | 219 | - { os: windows-2022, arch: AMD64, cibw_build: 'cp*', cibw_skip: '*36* *38*' }
|
220 | 220 | - { os: windows-2022, arch: x86, cibw_build: 'cp*', cibw_skip: '*36* *38*' }
|
221 |
| - if: ${{ inputs.fullMode == 1 || startsWith(github.ref, 'refs/tags') || contains(github.event.head_commit.message, 'CI(full)') }} |
| 221 | + if: ${{ inputs.fullMode == 1 || (startsWith(github.ref, 'refs/tags') && !startsWith(github.ref, 'refs/tags/v')) || contains(github.event.head_commit.message, 'CI(full)') }} |
222 | 222 | steps:
|
223 | 223 | - uses: actions/checkout@v4
|
224 | 224 | with:
|
@@ -310,7 +310,7 @@ jobs:
|
310 | 310 | permissions:
|
311 | 311 | id-token: write
|
312 | 312 | runs-on: ubuntu-latest
|
313 |
| - if: startsWith(github.ref, 'refs/tags') |
| 313 | + if: startsWith(github.ref, 'refs/tags') && !startsWith(github.ref, 'refs/tags/v') |
314 | 314 | steps:
|
315 | 315 | - uses: actions/download-artifact@v4
|
316 | 316 | with:
|
|
0 commit comments