diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index f6704646b..40daa43a1 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -111,7 +111,7 @@ jobs: needs: - check_changes - version - if: "${{ needs.check_changes.outputs.devfiles == 'true' || startsWith(github.event.ref, 'refs/tags/v') && github.event_name == 'push' }}" + if: "${{ needs.check_changes.outputs.devfiles == 'true' || (startsWith(github.event.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/v')) && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }}" permissions: checks: "write" pull-requests: "write" @@ -404,7 +404,7 @@ jobs: limit-access-to-actor: true vlab: - if: "${{ needs.check_changes.outputs.devfiles == 'true' || startsWith(github.event.ref, 'refs/tags/v') && github.event_name == 'push' }}" + if: "${{ needs.check_changes.outputs.devfiles == 'true' || (startsWith(github.event.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/v')) && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }}" needs: - check - version