mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
init
This commit is contained in:
@@ -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
|
||||
);
|
||||
Reference in New Issue
Block a user