How to change active directory using ansible

I am trying to change my active directory to a directory which has a script that I want to run.

Playbook:

- name: run script in other dir
  shell: "sh temp.sh"
  args:
    chdir: /path/to/dest/dir

# kraM