From 50a2dd227f1390a3d90bfb76e67704989cb9c720 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 18 Nov 2025 15:57:05 +0000 Subject: [PATCH] Upload the installer build artifact when not doing a release. --- .github/workflows/ci-windows.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index e67308933..3298cb9b0 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -67,3 +67,10 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release upload ${{ github.event.release.tag_name }} $(Get-ChildItem anope-*.exe) + + - name: Upload artifact + if: "${{ github.event_name != 'release' }}" + uses: actions/upload-artifact@v4 + with: + name: windows-installer + path: ${{ github.workspace }}\build\\anope-*.exe