expire CI artifacts in 1h

This commit is contained in:
Sebastian Frank 2017-08-31 20:52:15 +02:00
parent 8fda9a2ad9
commit 29fe1f0206
No known key found for this signature in database
GPG Key ID: DC2BC5C506EBF6F3
2 changed files with 25 additions and 19 deletions

View File

@ -19,7 +19,7 @@ build_ui:
- npm run build - npm run build
artifacts: artifacts:
name: "basispanel-ui-$CI_COMMIT_REF_NAME" name: "basispanel-ui-$CI_COMMIT_REF_NAME"
expire_in: 1 week expire_in: 1h
paths: paths:
- assets - assets
- build - build

View File

@ -1,21 +1,27 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="utf-8"> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta charset="utf-8">
<style> <meta name="viewport" content="width=device-width, initial-scale=1.0">
.component-fade-enter-active, .component-fade-leave-active { <style>
transition: opacity .3s ease; .component-fade-enter-active,
} .component-fade-leave-active {
.component-fade-enter, .component-fade-leave-to { transition: opacity .3s ease;
opacity: 0; }
}
</style> .component-fade-enter,
</head> .component-fade-leave-to {
<body> opacity: 0;
<div id="vue-app"> }
<app></app> </style>
</div> </head>
<script src="build/app.js"></script>
</body> <body>
<div id="vue-app">
<app></app>
</div>
<script src="build/app.js"></script>
</body>
</html> </html>