Help with calling Climate Set Temperature

Having an issue getting call service - set temperature to work, the same automation sets HVAC mode easily but it will always default to a different temperature then the one I am setting. This doesn’t work as 2 separate automations or re-ordering the actions. I have an Ecobee 3 lite, anyone have any ideas?

alias: Temperature Regulation - Natural Alarm
trigger:
  - platform: time
    at: "06:30:00"
condition:
  - condition: state
    entity_id: binary_sensor.workday_sensor
    state: "on"
action:
  - service: climate.set_hvac_mode
    data:
      hvac_mode: heat
    target:
      entity_id: climate.home
  - service: climate.set_temperature
    data:
      temperature: 74
      hvac_mode: heat
    target:
      entity_id: climate.home