refactor: streamline .drone.yml for improved readability and maintainability
This commit is contained in:
parent
de2745e433
commit
2e98e6cc02
1 changed files with 22 additions and 22 deletions
44
.drone.yml
44
.drone.yml
|
|
@ -3,28 +3,28 @@ type: docker
|
|||
name: deploy
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: node:18-alpine
|
||||
commands:
|
||||
- npm ci || npm install
|
||||
- npm run build || npm build
|
||||
- name: build
|
||||
image: node:18-alpine
|
||||
commands:
|
||||
- npm ci || npm install
|
||||
- npm run build || npm build
|
||||
|
||||
- name: sync-files
|
||||
image: alpine:latest
|
||||
volumes:
|
||||
- name: website-data
|
||||
path: /host-target
|
||||
commands:
|
||||
# Install git-lfs in the container
|
||||
- apk add --no-cache git git-lfs
|
||||
# Initialize LFS and pull LFS files
|
||||
- git lfs install
|
||||
- git lfs pull
|
||||
# Then copy all files (including LFS files)
|
||||
- cp -a . /host-target
|
||||
- chmod -R 777 /host-target
|
||||
- name: sync-files
|
||||
image: alpine:latest
|
||||
volumes:
|
||||
- name: website-data
|
||||
path: /host-target
|
||||
commands:
|
||||
# Install git-lfs in the container
|
||||
- apk add --no-cache git git-lfs
|
||||
# Initialize LFS and pull LFS files
|
||||
- git lfs install
|
||||
- git lfs pull
|
||||
# Then copy all files (including LFS files)
|
||||
- cp -a . /host-target
|
||||
- chmod -R 777 /host-target
|
||||
|
||||
volumes:
|
||||
- name: website-data
|
||||
host:
|
||||
path: /root/kh3website/data/html
|
||||
- name: website-data
|
||||
host:
|
||||
path: /root/kh3website/data/html
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue