From 99b319f97fdb25bfeb36446639f258b6be42ea72 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 16 Aug 2024 22:33:48 -0400 Subject: [PATCH] Revert "More CI Fixes" This reverts commit 6f8e129fcc5df3d267f4974b471a1f9c9a34c8c1. --- .github/workflows/ci-security.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-security.yml b/.github/workflows/ci-security.yml index 5b408b6b69..2e6926d523 100644 --- a/.github/workflows/ci-security.yml +++ b/.github/workflows/ci-security.yml @@ -65,11 +65,23 @@ jobs: actions: write contents: write steps: + - name: Setup dotnet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '${{ env.TGS_DOTNET_VERSION }}.0.x' + dotnet-quality: ${{ env.TGS_DOTNET_QUALITY }} + - name: Checkout uses: actions/checkout@v4 with: ref: refs/pull/${{ github.event.pull_request.number }}/head + - name: Restore + run: dotnet restore + + - name: Build ReleaseNotes + run: dotnet publish -c Release -p:TGS_HOST_NO_WEBPANEL=true -o release_notes_bins tools/Tgstation.Server.ReleaseNotes/Tgstation.Server.ReleaseNotes.csproj + - name: Checkout uses: actions/checkout@v4 with: @@ -99,7 +111,7 @@ jobs: token: ${{ github.token }} workflow-inputs: | { - "pull_request_number": "${{ github.event.pull_request.number }}", + "pull_request_number": "${{ github.event.pull_request.number }}" "pull_request_merge_sha": "${{ steps.get-pr-sha.outputs.merge_sha }}" }