From 4da35a04a5fefbc1969340f32784cf5b270757fa Mon Sep 17 00:00:00 2001 From: xdavidwu Date: Sat, 2 Apr 2022 20:21:28 +0800 Subject: [PATCH] build: fix tasks def --- .build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.build.yml b/.build.yml index 5c95223..3156365 100644 --- a/.build.yml +++ b/.build.yml @@ -15,13 +15,13 @@ packages: sources: - https://github.com/vector-im/element-web#v1.10.8 tasks: - build: | - cd element-web - yarn install --frozen-lockfile - yarn build - pack: | - cp config.json element-web/webapp/ - cp Information_Block.ogg element-web/webapp/media/message.ogg - tar -C element-web/webapp -cvz . > https.tar.gz - publish: | - hut pages publish https.tar.gz --domain element.xdavidwu.link + - build: | + cd element-web + yarn install --frozen-lockfile + yarn build + - pack: | + cp config.json element-web/webapp/ + cp Information_Block.ogg element-web/webapp/media/message.ogg + tar -C element-web/webapp -cvz . > https.tar.gz + - publish: | + hut pages publish https.tar.gz --domain element.xdavidwu.link -- 2.43.0