Add Step environment variables

This commit is contained in:
Don 2019-09-06 16:32:54 -07:00
parent fb9f59c853
commit 537f56a596
1 changed files with 20 additions and 0 deletions

20
pkg/plugin/env.go Normal file
View File

@ -0,0 +1,20 @@
// Copyright (c) 2019, the Drone Plugins project authors.
// Please see the AUTHORS file for details. All rights reserved.
// Use of this source code is governed by an Apache 2.0 license that can be
// found in the LICENSE file.
package plugin
// List of enviornment variables set by Drone when running a step within a
// build stage.
//
// Multiple values are specified with `,` within the string. If there are
// multiple values this is to support backward compatibility with versions of
// Drone prior to the 1.0 release.
const (
// StepNameEnvVar is the environment variable for setting Step.Name.
StepNameEnvVar = "DRONE_STEP_NAME"
// StepNumberEnvVar is the environment variable for setting Step.Number.
StepNumberEnvVar = "DRONE_STEP_NUMBER"
)