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
artifacts:
name: "basispanel-ui-$CI_COMMIT_REF_NAME"
expire_in: 1 week
expire_in: 1h
paths:
- assets
- build

View File

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