Get an advanced custom field after post publish

I would suggest to use wp_insert_post hook to make sure that everything is processed before you hook in.

add_action( 'wp_insert_post', 'my_wp_insert_post_cb', 10, 2 );
function my_wp_insert_post_cb( $post_id, $post ) {
    // Do your stuff here
}