Merge pull request 'Switch to Gitea Actions' (#15) from actions into master
All checks were successful
moisson / deploy (push) Successful in 13s
All checks were successful
moisson / deploy (push) Successful in 13s
Reviewed-on: #15
This commit is contained in:
commit
6200b75ec8
19
.drone.yml
19
.drone.yml
@ -1,19 +0,0 @@
|
|||||||
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;set dns:order \"inet inet6\"; open -u $USERNAME,$PASSWORD $HOST; cd cila.camelia-studio.org/moisson-rouge; mirror -Rpnevvv --parallel=10 --exclude .git/"
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- master
|
|
18
.gitea/workflows/moisson.yml
Normal file
18
.gitea/workflows/moisson.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: moisson
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
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;set dns:order \"inet inet6\"; open -u $USERNAME,$PASSWORD $HOST; cd cila.camelia-studio.org/moisson-rouge; mirror -Rpnevvv --parallel=10 --exclude .git/"
|
||||||
|
env:
|
||||||
|
USERNAME: ${{ secrets.USERNAME }}
|
||||||
|
PASSWORD: ${{ secrets.PASSWORD }}
|
||||||
|
HOST: ${{ secrets.HOST }}
|
Loading…
Reference in New Issue
Block a user