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> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<style> <style>
.component-fade-enter-active, .component-fade-leave-active { .component-fade-enter-active,
.component-fade-leave-active {
transition: opacity .3s ease; transition: opacity .3s ease;
} }
.component-fade-enter, .component-fade-leave-to {
.component-fade-enter,
.component-fade-leave-to {
opacity: 0; opacity: 0;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="vue-app"> <div id="vue-app">
<app></app> <app></app>
</div> </div>
<script src="build/app.js"></script> <script src="build/app.js"></script>
</body> </body>
</html> </html>