From 37168c0c7a22ad70fa19b46f330c233c77f11f03 Mon Sep 17 00:00:00 2001 From: RainLoop Team Date: Sat, 16 Jan 2021 21:25:02 +0300 Subject: [PATCH] CI --- .github/workflows/builder.yml | 3 +++ tasks/owncloud.js | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 1d2e5bfe2..3e1e9282a 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -32,7 +32,10 @@ jobs: run: | mkdir ./release cp `ls ./build/dist/releases/**/**/*.zip | xargs` ./release + echo "---" ls ./release/*.zip + echo "---" + ls ./release/*.zip | xargs - name: Configure GPG Key run: | diff --git a/tasks/owncloud.js b/tasks/owncloud.js index 48ae9edd5..864b4eb9e 100644 --- a/tasks/owncloud.js +++ b/tasks/owncloud.js @@ -59,7 +59,7 @@ const owncloudSetup = (done) => { config.cleanPath = dist; config.zipSrcPath = dist; config.zipFile = 'rainloop-owncloud-app-' + (config.community ? '' : 'standard-') + versionFull + '.zip'; - config.zipFileShort = 'rainloop' + (config.community ? '' : '-standard') + '.zip'; + // config.zipFileShort = 'rainloop' + (config.community ? '' : '-standard') + '.zip'; done(); }; @@ -80,9 +80,9 @@ const owncloudClean = (done) => { done(); }; -const owncloudShortname = (done) => { - copy(config.destPath + config.zipFile, config.destPath + config.zipFileShort, done); -}; +// const owncloudShortname = (done) => { +// copy(config.destPath + config.zipFile, config.destPath + config.zipFileShort, done); +// }; exports.owncloud = gulp.series( owncloudCopy, @@ -91,6 +91,6 @@ exports.owncloud = gulp.series( owncloudCopyRainLoopClean, owncloudSetup, owncloudZip, - owncloudClean, - owncloudShortname + owncloudClean + // owncloudShortname );