From 65c5dc1f3b59b53e4251898a680a972d616d6ab1 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Tue, 5 Jan 2021 18:13:48 +0000 Subject: [PATCH] actually installing AST --- .github/workflows/build-and-sign.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build-and-sign.yml b/.github/workflows/build-and-sign.yml index 0fb892b1bc..d2238399dc 100644 --- a/.github/workflows/build-and-sign.yml +++ b/.github/workflows/build-and-sign.yml @@ -43,8 +43,15 @@ jobs: Write-Host "PACKAGE VERSION TO BUILD - $latest_version" Write-Host "--------" + dotnet restore + dotnet pact --output ./nupkg + dotnet tool install --global --ignore-failed-sources --add-source ./nupkg --version $latest_version azuresigntool + cd $HOME + - name: Test AST + run: azuresigntool sign --help + - name: Checkout repo uses: actions/checkout@v2