move app/* to root of repo
This commit is contained in:
parent
0eefaa7f44
commit
e9516556e2
18 changed files with 3 additions and 4 deletions
0
app/.gitignore → .gitignore
vendored
0
app/.gitignore → .gitignore
vendored
|
@ -6,16 +6,15 @@ build site:
|
|||
image: node:lts
|
||||
stage: build
|
||||
script:
|
||||
- cd app
|
||||
- npm ci --cache .npm --prefer-offline
|
||||
- npm run build
|
||||
cache:
|
||||
key: ${CI_COMMIT_REF_SLUG}
|
||||
paths:
|
||||
- app/.npm
|
||||
- .npm
|
||||
artifacts:
|
||||
paths:
|
||||
- app/dist
|
||||
- dist
|
||||
|
||||
deploy site:
|
||||
image: instrumentisto/rsync-ssh
|
||||
|
@ -29,4 +28,4 @@ deploy site:
|
|||
- chmod 644 ~/.ssh/known_hosts
|
||||
- eval $(ssh-agent -s)
|
||||
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
|
||||
- rsync -vr -e "ssh -p ${SSH_PORT}" app/dist/ "${DEPLOY_DEST}"
|
||||
- rsync -vr -e "ssh -p ${SSH_PORT}" dist/ "${DEPLOY_DEST}"
|
||||
|
|
0
app/package-lock.json → package-lock.json
generated
0
app/package-lock.json → package-lock.json
generated
0
app/src/shims-vue.d.ts → src/shims-vue.d.ts
vendored
0
app/src/shims-vue.d.ts → src/shims-vue.d.ts
vendored
Loading…
Reference in a new issue