Frame-of-Mind/.woodpecker.yml

18 lines
550 B
YAML
Raw Permalink Normal View History

2022-12-16 20:27:29 +00:00
pipeline:
build:
2022-12-18 16:03:16 +00:00
image: barichello/godot-ci
2022-12-16 20:27:29 +00:00
pull: true
commands:
2022-12-18 18:00:31 +00:00
- mkdir build
2022-12-18 17:54:52 +00:00
- godot --path src/ --export-debug "Linux/X11" ../build/frame_of_mind
pack:
2022-12-18 17:57:55 +00:00
image: alpine
pull: true
2022-12-18 17:54:52 +00:00
commands:
- tar --create --file frame_of_mind.tar.gz --gzip build/*
2022-12-18 16:55:07 +00:00
upload:
image: curlimages/curl
2022-12-18 17:54:52 +00:00
pull: true
2022-12-18 16:55:07 +00:00
commands:
2022-12-18 18:23:48 +00:00
- curl --user nek0:$${GITEA_TOKEN} --upload-file frame_of_mind.tar.gz https://gitea.nek0.eu/api/packages/nek0/generic/frame_of_mind/0.0.0_build_${CI_BUILD_NUMBER}/frame_of_mind.tar.gz