Fix test case for sign pipeline

This commit is contained in:
DSR! 2025-05-27 12:44:01 -03:00
parent 32f0d80b1a
commit 1129fc6a69

View File

@ -18,7 +18,11 @@ permissions:
jobs:
sign:
if: >
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
(
github.event_name == 'workflow_run' &&
github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.event == 'push'
)
|| github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest