mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-18 18:36:10 +00:00
14 lines
476 B
Markdown
14 lines
476 B
Markdown
# Drone CI
|
|
|
|
The configuration files for Drone builds are located in `.drone.yml`\
|
|
Drone build are often self-hosted, this means that you may gain excessive privileges to the kubernetes cluster that runs the runners, or to the hosting cloud environment.
|
|
|
|
In order to run an OS command in a workflow that builds pull requests - simply add a `commands` instruction to the step.
|
|
|
|
```yaml
|
|
steps:
|
|
- name: do-something
|
|
image: some-image:3.9
|
|
commands:
|
|
- {Payload}
|
|
``` |