From a557e909d63d784b092dfd0fbbb78cd230ac1e88 Mon Sep 17 00:00:00 2001 From: Matthew John Cheetham Date: Tue, 2 Jul 2024 14:41:26 -0700 Subject: [PATCH] release: fix signing in release workflow Fix the `dotnet tool install` command for code signing in the release workflow. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8e44ea2e5..2440cface 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -351,7 +351,7 @@ jobs: - name: Install sign CLI tool run: | - dotnet tool install -g --version 0.9.1-beta.24325.5 + dotnet tool install -g sign --version 0.9.1-beta.24325.5 - name: Sign payload run: | @@ -427,7 +427,7 @@ jobs: - name: Install sign CLI tool run: | - dotnet tool install -g --version 0.9.1-beta.24325.5 + dotnet tool install -g sign --version 0.9.1-beta.24325.5 - name: Sign package run: |