OpenContacts/.woodpecker/workflow.yaml

21 lines
501 B
YAML
Raw Normal View History

2024-10-14 15:48:43 -04:00
when:
- event: push
2024-10-14 18:11:37 -04:00
branch: dev
2024-10-14 15:48:43 -04:00
steps:
- name: build
2024-10-24 21:08:04 -04:00
image: fischerscode/flutter-sudo
2024-10-14 15:48:43 -04:00
commands:
2024-10-24 21:08:58 -04:00
- sudo git clone https://git.mrdab.vore.media/ThatOneJackalGuy/OpenContacts.git
2024-10-19 16:23:39 -04:00
- echo "Entering folder"
2024-10-14 18:39:00 -04:00
- cd OpenContacts
2024-10-24 20:40:32 -04:00
- echo "Getting Dependencies"
2024-10-24 21:11:21 -04:00
- flutter pub
- flutter doctor
2024-10-19 16:48:03 -04:00
- echo "Building..."
2024-10-24 21:11:21 -04:00
- flutter build apk
2024-10-19 16:48:03 -04:00
- echo "Build Completed!"
2024-10-14 18:41:56 -04:00
- name: Deploy
2024-10-14 18:42:18 -04:00
image: debian
2024-10-14 18:41:56 -04:00
commands:
2024-10-19 16:46:11 -04:00
- echo "Build Sucessful!"