chore(ci): harden release skip-ci condition for non-push triggers

This commit is contained in:
manjaroblack
2025-08-16 09:38:07 -05:00
parent 3c72d01f97
commit a0a0b1ba6c

View File

@@ -23,7 +23,7 @@ permissions:
jobs:
release:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
if: ${{ github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- name: Checkout
uses: actions/checkout@v4