From 1d0f38b29fcb0dc03912d2f22ae36c6c9ea0d4b3 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 7 Jan 2026 19:11:46 +0100 Subject: [PATCH] ci: fix tag detection --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ed8a9612..657fb2cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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' }}