From 3ec5dda7a79482b0130d1317c975695a3abd38d7 Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Sun, 19 May 2024 12:32:10 -0500 Subject: [PATCH] Label out artifacts unsigned, fix repack-out artifact name --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1a272c86..7f2db3359 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Upload out artifact uses: actions/upload-artifact@v4 with: - name: ${{ inputs.configuration }}-out + name: ${{ inputs.configuration }}-out-unsigned path: _build/out/ retention-days: 1 - name: Upload ckan.exe artifact diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fc5991a42..0ee7b1106 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: - name: Download out artifact uses: actions/download-artifact@v4 with: - name: Release-repack-out + name: Release-out-unsigned path: _build/out/ - name: Publish ckan.dll to NuGet env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c6e78005..d7d1b02ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - name: Download out artifact uses: actions/download-artifact@v4 with: - name: Debug-out + name: Debug-out-unsigned path: _build/out/ - name: Download repack artifact uses: actions/download-artifact@v4