Skip to content

Commit 1923bd8

Browse files
committed
(GH-86) Change env variable names
1 parent 4acda56 commit 1923bd8

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

setup.cake

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
// ENVIRONMENT VARIABLE NAMES
33
///////////////////////////////////////////////////////////////////////////////
44

5-
private static string githubUserNameVariable = "GITHUB_USERNAME";
6-
private static string githubPasswordVariable = "GITHUB_PASSWORD";
7-
private static string myGetApiKeyVariable = "MYGET_API_KEY";
8-
private static string myGetSourceUrlVariable = "MYGET_SOURCE";
9-
private static string nuGetApiKeyVariable = "NUGET_API_KEY";
10-
private static string nuGetSourceUrlVariable = "NUGET_SOURCE";
11-
private static string chocolateyApiKeyVariable = "CHOCOLATEY_API_KEY";
12-
private static string chocolateySourceUrlVariable = "CHOCOLATEY_SOURCE";
13-
private static string gitterTokenVariable = "GITTER_TOKEN";
14-
private static string gitterRoomIdVariable = "GITTER_ROOM_ID";
15-
private static string slackTokenVariable = "SLACK_TOKEN";
16-
private static string slackChannelVariable = "SLACK_CHANNEL";
17-
private static string twitterConsumerKeyVariable = "TWITTER_CONSUMER_KEY";
18-
private static string twitterConsumerSecretVariable = "TWITTER_CONSUMER_SECRET";
19-
private static string twitterAccessTokenVariable = "TWITTER_ACCESS_TOKEN";
20-
private static string twitterAccessTokenSecretVariable = "TWITTER_ACCESS_TOKEN_SECRET";
21-
private static string appVeyorApiTokenVariable = "APPVEYOR_API_TOKEN";
22-
private static string coverallsRepoTokenVariable = "COVERALLS_REPO_TOKEN";
5+
private static string githubUserNameVariable = "GITTOOLS_GITHUB_USERNAME";
6+
private static string githubPasswordVariable = "GITTOOLS_GITHUB_PASSWORD";
7+
private static string myGetApiKeyVariable = "GITTOOLS_MYGET_API_KEY";
8+
private static string myGetSourceUrlVariable = "GITTOOLS_MYGET_SOURCE";
9+
private static string nuGetApiKeyVariable = "GITTOOLS_NUGET_API_KEY";
10+
private static string nuGetSourceUrlVariable = "GITTOOLS_NUGET_SOURCE";
11+
private static string chocolateyApiKeyVariable = "GITTOOLS_CHOCOLATEY_API_KEY";
12+
private static string chocolateySourceUrlVariable = "GITTOOLS_CHOCOLATEY_SOURCE";
13+
private static string gitterTokenVariable = "GITTOOLS_GITTER_TOKEN";
14+
private static string gitterRoomIdVariable = "GITTOOLS_GITTER_ROOM_ID";
15+
private static string slackTokenVariable = "GITTOOLS_SLACK_TOKEN";
16+
private static string slackChannelVariable = "GITTOOLS_SLACK_CHANNEL";
17+
private static string twitterConsumerKeyVariable = "GITTOOLS_TWITTER_CONSUMER_KEY";
18+
private static string twitterConsumerSecretVariable = "GITTOOLS_TWITTER_CONSUMER_SECRET";
19+
private static string twitterAccessTokenVariable = "GITTOOLS_TWITTER_ACCESS_TOKEN";
20+
private static string twitterAccessTokenSecretVariable = "GITTOOLS_TWITTER_ACCESS_TOKEN_SECRET";
21+
private static string appVeyorApiTokenVariable = "GITTOOLS_APPVEYOR_API_TOKEN";
22+
private static string coverallsRepoTokenVariable = "GITTOOLS_COVERALLS_REPO_TOKEN";
2323

2424
///////////////////////////////////////////////////////////////////////////////
2525
// BUILD ACTIONS

0 commit comments

Comments
 (0)