ci: fix tag detection

This commit is contained in:
Pierre Tachoire
2026-01-07 19:11:46 +01:00
parent 8fcf12f74c
commit 1d0f38b29f

View File

@@ -55,7 +55,7 @@ jobs:
with:
allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ github.event.push.tags && github.ref_type == 'tag' && '' || 'nightly' }}
tag: ${{ github.ref_type == 'tag' && '' || 'nightly' }}
build-linux-aarch64:
env:
@@ -93,7 +93,7 @@ jobs:
with:
allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ github.event.push.tags && github.ref_type == 'tag' && '' || 'nightly' }}
tag: ${{ github.ref_type == 'tag' && '' || 'nightly' }}
build-macos-aarch64:
env:
@@ -133,7 +133,7 @@ jobs:
with:
allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ github.event.push.tags && github.ref_type == 'tag' && '' || 'nightly' }}
tag: ${{ github.ref_type == 'tag' && '' || 'nightly' }}
build-macos-x86_64:
env:
@@ -171,4 +171,4 @@ jobs:
with:
allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ github.event.push.tags && github.ref_type == 'tag' && '' || 'nightly' }}
tag: ${{ github.ref_type == 'tag' && '' || 'nightly' }}