refactor: streamline .drone.yml for improved readability and maintainability

This commit is contained in:
George Birikorang 2025-09-16 18:58:39 -07:00
parent de2745e433
commit 2e98e6cc02

View file

@ -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