From 62227aa1a45e1a863bb9731c3eabc8d2f03911f8 Mon Sep 17 00:00:00 2001 From: Diject Date: Sun, 4 Jan 2026 20:44:02 +0300 Subject: [PATCH] Add artifact-suffix input to Windows workflow --- .github/workflows/push.yml | 1 + .github/workflows/windows.yml | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 3c627291f2..38479838e1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -156,3 +156,4 @@ jobs: vcpkg-deps-tag: ${{ needs.Output-Envs.outputs.VCPKG_DEPS_TAG }} build-type: ${{ needs.Output-Envs.outputs.BUILD_TYPE }} package: true + artifact-suffix: "-installer" diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0cc71cf006..a45f9614a2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -24,6 +24,10 @@ on: release: default: false type: boolean + artifact-suffix: + description: Suffix to add to artifact names + default: "" + type: string jobs: Windows: @@ -200,19 +204,19 @@ jobs: - name: Store OpenMW archived pdb files uses: actions/upload-artifact@v4 with: - name: openmw-windows-${{ inputs.msvc }}-pdb-${{ github.sha }} + name: openmw-windows-${{ inputs.msvc }}-pdb${{ inputs.artifact-suffix }}-${{ github.sha }} path: ${{ github.workspace }}/pdb/* - name: Store OpenMW build artifacts uses: actions/upload-artifact@v4 with: - name: openmw-windows-${{ inputs.msvc }}-${{ github.sha }} + name: openmw-windows-${{ inputs.msvc }}${{ inputs.artifact-suffix }}-${{ github.sha }} path: ${{ github.workspace }}/install/* - name: Store symbol server artifacts uses: actions/upload-artifact@v4 with: - name: openmw-windows-${{ inputs.msvc }}-sym-store-${{ github.sha }} + name: openmw-windows-${{ inputs.msvc }}-sym-store${{ inputs.artifact-suffix }}-${{ github.sha }} path: ${{ github.workspace }}/SymStore/* - name: Upload to symbol server