mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-11-05 02:40:40 +00:00
Add Step environment variables
This commit is contained in:
parent
fb9f59c853
commit
537f56a596
20
pkg/plugin/env.go
Normal file
20
pkg/plugin/env.go
Normal 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"
|
||||
)
|
Loading…
Reference in New Issue
Block a user