Compare commits
No commits in common. "8adbc5c9d552ea226daea844d28d1dc32468ed18" and "d12e2e68192bac644db61cdd9c919c1ce22821dd" have entirely different histories.
8adbc5c9d5
...
d12e2e6819
16
.drone.yml
Normal file
16
.drone.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: deploy
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
image: mwienk/docker-lftp
|
||||||
|
environment:
|
||||||
|
USERNAME:
|
||||||
|
from_secret: ftp-esenjin-username
|
||||||
|
PASSWORD:
|
||||||
|
from_secret: ftp-esenjin-password
|
||||||
|
HOST:
|
||||||
|
from_secret: shelter-host
|
||||||
|
commands:
|
||||||
|
- lftp -c "set cmd:fail-exit yes; set ftp:ssl-allow no; open -u $USERNAME,$PASSWORD $HOST; cd cila.camelia-studio.org/roulette-donjons; mirror -Rpnevvv --parallel=10 --exclude .git/"
|
@ -1,15 +0,0 @@
|
|||||||
name: roulette
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: finalgene/lftp
|
|
||||||
steps:
|
|
||||||
- run: apk add --no-cache git nodejs
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- run: lftp -c "set cmd:fail-exit yes; set ftp:ssl-allow no; open -u $USERNAME,$PASSWORD $HOST; cd cila.camelia-studio.org/roulette-donjons; mirror -Rpnevvv --parallel=10 --exclude .git/"
|
|
||||||
env:
|
|
||||||
USERNAME: ${{ secrets.USERNAME }}
|
|
||||||
PASSWORD: ${{ secrets.PASSWORD }}
|
|
||||||
HOST: ${{ secrets.HOST }}
|
|
Loading…
Reference in New Issue
Block a user