Asuro/.drone.yml
Kieron Morris 6a1b87e250
All checks were successful
continuous-integration/drone/push Build is passing
.drone.yml modifications
Modified drone.yml to copy source from the /drone/src directory to the /code directory.
2025-03-09 17:49:04 +00:00

25 lines
510 B
YAML

kind: pipeline
type: docker
name: build
steps:
- name: build-image
image: plugins/docker
settings:
repo: t3hn3rd/asuro-build
tags: latest
dockerfile: Dockerfile
registry: docker.io
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: compile
image: t3hn3rd/asuro-build:latest
depends_on:
- build-image
commands:
- cp -r /drone/src/* /code/
- chmod +x /code/*.sh
- /compile.sh