ci: fix az deploy test

This commit is contained in:
Caelan Sayler
2024-03-29 11:41:31 +00:00
parent 07b59d6468
commit 6d2f829266
2 changed files with 4 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ on: [ push, pull_request ]
env:
VELOPACK_GITHUB_TEST_TOKEN: ${{ secrets.VELOPACK_GITHUB_TEST_TOKEN }}
VELOPACK_B2_TEST_TOKEN: ${{ secrets.VELOPACK_B2_TEST_TOKEN }}
VELOPACK_AZ_TEST_TOKEN: ${{ secrets.VELOPACK_AZ_TEST_TOKEN }}
jobs:
test-rust-bins:

View File

@@ -6,10 +6,10 @@ namespace Velopack.Packaging.Tests;
public class AzureDeploymentTests
{
public readonly static string AZ_ACCOUNT = "velopacktest";
public readonly static string AZ_ACCOUNT = "velopacktesting";
public readonly static string AZ_KEY = Environment.GetEnvironmentVariable("VELOPACK_AZ_TEST_TOKEN");
public readonly static string AZ_CONTAINER = "test1";
public readonly static string AZ_ENDPOINT = "velopacktest.blob.core.windows.net";
public readonly static string AZ_CONTAINER = "ci-deployment";
public readonly static string AZ_ENDPOINT = "velopacktesting.blob.core.windows.net";
private readonly ITestOutputHelper _output;