如何设置时区aws buildspec

How to set timezone aws buildspec

我需要将当前本地时间戳附加到使用 buildspec.yml 创建的文件的名称 使用以下内容,我可以附加时间戳。但它是在UTC。如何设置时区,使名称具有本地时间?

zip -r xxx-$(date +%Y%m%d_%H%m%S).zip .

谢谢,Asdfg。

zip -r xxx-$(env TZ=Australia/Melbourne date +%Y%m%d_%H%m%S).zip