Show tags of custom post types in WordPress

global $post;

$terms = wp_get_post_terms($post->ID);

foreach($terms as $term) {

    echo $term_single->name;
}