Unser Beitrag zur 2D-Welt vom rC3. Basierend auf dem Starter-Kit
https://rc3.world/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
390 B
27 lines
390 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: publish
|
|
image: alpine
|
|
volumes:
|
|
- name: output
|
|
path: /output
|
|
commands:
|
|
- apk add rsync
|
|
- rsync -a --del . /output/
|
|
- chown -R 33:33 /output
|
|
when:
|
|
repo:
|
|
- projekte/rc3-2dwelt
|
|
branch:
|
|
- master
|
|
event:
|
|
exclude:
|
|
- pull_request
|
|
|
|
volumes:
|
|
- name: output
|
|
host:
|
|
path: /var/www/2dwelt
|
|
|