Compare commits
2 Commits
cb8400eea3
...
ci
| Author | SHA1 | Date | |
|---|---|---|---|
| f7dd929bdd | |||
| 30aba3c871 |
52
.gitlab-ci.yml
Normal file
52
.gitlab-ci.yml
Normal file
@@ -0,0 +1,52 @@
|
||||
stages:
|
||||
- build
|
||||
- deploy
|
||||
|
||||
# cache using branch name
|
||||
# https://gitlab.com/help/ci/caching/index.md
|
||||
cache:
|
||||
key: ${CI_COMMIT_REF_SLUG}
|
||||
paths:
|
||||
- node_modules
|
||||
|
||||
build:blobs:
|
||||
image: golang:1.17
|
||||
stage: build
|
||||
script:
|
||||
- mkdir /blobs
|
||||
- make wasm
|
||||
- make build-cross-clis
|
||||
- mv covergen.wasm dist /blobs
|
||||
artifacts:
|
||||
paths:
|
||||
- /blobs
|
||||
expire_in: 30 days
|
||||
|
||||
build:frontend:
|
||||
image: node:16
|
||||
stage: build
|
||||
needs:
|
||||
- build:blobs
|
||||
before_script:
|
||||
- corepack npm install --immutable
|
||||
script:
|
||||
- cd frontend
|
||||
- mv /blobs/* public
|
||||
- corepack npm run build
|
||||
artifacts:
|
||||
paths:
|
||||
- dist/
|
||||
expire_in: 30 days
|
||||
|
||||
deploy:
|
||||
stage: deploy
|
||||
image: alpine
|
||||
needs:
|
||||
- build:frontend
|
||||
before_script:
|
||||
- apk add lftp
|
||||
script:
|
||||
- lftp "$DEPLOY_USER_PASS@vps0.miwebb.com:/" -e "mirror -R dist/ .; quit"
|
||||
environment:
|
||||
name: live
|
||||
url: https://covergen.miwebb.dev
|
||||
@@ -2,11 +2,11 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="icon" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
||||
<title>NVLS | Covergen</title>
|
||||
<title>MiWebb | Covergen</title>
|
||||
</head>
|
||||
<body class="bg-gray-200">
|
||||
<div id="app"></div>
|
||||
|
||||
Reference in New Issue
Block a user