Custom action is not visible inside automation rule action

Trying to add a custom action using forge and action module . but after deployment the app is not visible inside automation rule builder . any one please help

manifest :

modules:
  automation:actionProvider:
    - key: jira-automation-automation-action-provider-custom-ui
      actions:
        - automation-action-custom-ui
  action:
    - key: automation-action-custom-ui
      name: Automation action
      function: add-comment-to-issue
      description: adds comment on an issue.
      config:
        resource: main-resource
      inputs:
        issueKey:
          title: Issue Id
          type: string
          description: The issue id for the Jira issue id where a comments needs to be added
          required: true
        comment:
          title: Comment
          type: string
          description: The comment that needs to be added to the issue
          required: true
      actionVerb: CREATE
      resolver:
        function: automation-resolver
  function:
    - key: add-comment-to-issue
      handler: index.addComment
    - key: automation-resolver
      handler: index.handler
app:
  runtime:
    name: nodejs22.x
  id: ari:cloud:ecosystem::app/b7aa1771-4a83-4402-b578-dd0358683a3e
resources:
  - key: main-resource
    path: static/hello-world/build
permissions:
  scopes:
    - write:jira-work
    - read:jira-work
  content:
    styles:
      - unsafe-inline