Think I might be getting somewhere, but still not quite… anyone?
add_action( 'save_post', 'add_authors_name', 10, 2);
function add_authors_name( $post_id ) {
$post_author = get_the_author($post_id);
$post_author = str_replace(' ', '-', $post_author);
wp_set_post_terms( $post_id, "$post_author", 'post_tag', true );