mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-22 02:19:25 +00:00
37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
# Environment
|
|
|
|
The build environment is largely defined by the Docker image you specify in the `.drone.yml`. In addition, Drone will inject default environment variable and private variables.
|
|
|
|
## Environment Variables
|
|
|
|
The build environment has access to the following environment variables:
|
|
|
|
* `CI=true`
|
|
* `DRONE=true`
|
|
* `DRONE_REPO` - repository name for the current build
|
|
* `DRONE_BUILD` - build number for the current build
|
|
* `DRONE_BRANCH` - branch name for the current build
|
|
* `DRONE_COMMIT` - git sha for the current build
|
|
* `DRONE_DIR` - working directory for the current build
|
|
|
|
|
|
## Private Variables
|
|
|
|
Drone allows you to store sensitive data external to the `.drone.yml` and inject at runtime. You can declare private variables in the repository settings screen. These variables are injected into the `.drone.yml` at runtime using the `$$` notation.
|
|
|
|
An example `.drone.yml` expecting the `HEROKU_TOKEN` private variable:
|
|
|
|
```yaml
|
|
build:
|
|
image: golang
|
|
commands:
|
|
- go get
|
|
- go build
|
|
- go test
|
|
|
|
publish:
|
|
heroku:
|
|
app: pied_piper
|
|
token: $$HEROKU_TOKEN
|
|
```
|