Skip to content

Commit

Permalink
use correct env var for pac webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats authored Dec 25, 2023
1 parent ce58451 commit a4a0781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plogon/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static async Task Main(DirectoryInfo outputFolder, DirectoryInfo manifestFolder,
throw new Exception("No mode of operation specified.");

var publicChannelWebhook = new DiscordWebhook(Environment.GetEnvironmentVariable("DISCORD_WEBHOOK"));
var pacChannelWebhook = new DiscordWebhook(Environment.GetEnvironmentVariable("DISCORD_PAC_WEBHOOK"));
var pacChannelWebhook = new DiscordWebhook(Environment.GetEnvironmentVariable("PAC_DISCORD_WEBHOOK"));
var webservices = new WebServices();

var githubSummary = "## Build Summary\n";
Expand Down

0 comments on commit a4a0781

Please sign in to comment.