This commit is contained in:
RainLoop Team 2021-01-16 21:25:02 +03:00
parent 55915e56d8
commit 37168c0c7a
2 changed files with 9 additions and 6 deletions

View file

@ -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: |

View file

@ -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
);