From ccd971097969a609a7da17bf68bb41e23d9c19ee Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 20 Jun 2023 19:02:35 -0400 Subject: [PATCH] Validate all debian artifact signatures --- .github/workflows/ci-suite.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index 08aa454616..f66fe5109b 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -903,8 +903,11 @@ jobs: run: | echo "TGS_VERSION=$(xmlstarlet sel -N X="http://schemas.microsoft.com/developer/msbuild/2003" --template --value-of /X:Project/X:PropertyGroup/X:TgsCoreVersion build/Version.props)" >> $GITHUB_ENV - - name: Validate .dsc Signature - run: gpg --verify tgstation-server_${{ env.TGS_VERSION }}-1.dsc + - name: Validate Signatures + run: | + gpg --verify tgstation-server_${{ env.TGS_VERSION }}-1.dsc + gpg --verify tgstation-server_${{ env.TGS_VERSION }}-1_amd64.changes + gpg --verify tgstation-server_${{ env.TGS_VERSION }}-1_amd64.buildinfo - name: Upload .deb Artifact uses: actions/upload-artifact@v3