This commit is contained in:
Niels Nübel
2020-12-04 11:11:35 +01:00
commit 3d59b14405
114 changed files with 72924 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/**
* Automatic Release
*
* @description: Deploy Task for an automated Build Process
*/
import { series, parallel } from 'gulp'
import { copyRelease } from './copy-release'
import { copyPackageFiles } from './copy-packagefiles'
import { buildArchives } from './archives'
import { cleaner, deleteReleasefilesFolder } from './clean';
// Config
import { config } from '../config';
export const release = series(
cleaner,
copyRelease,
copyPackageFiles,
buildArchives
);