[SOLVED] Drone 1.0.0-rc.1 pipeline environment

it does not work.

steps:
- name: hexo-deploy
  image: node:8
  environment:
  -TZ=Asia/Shanghai

it does work.

steps:
- name: hexo-deploy
  image: node:8
  environment:
    TZ: Asia/Shanghai

correct, the syntax is key: value per the documentation