From 2c0449fd8481debcd0d9bff4eca80132fa5e335d Mon Sep 17 00:00:00 2001 From: thom2305 <102167733+thom2305@users.noreply.github.com> Date: Fri, 25 Apr 2025 18:14:46 -0400 Subject: [PATCH] Update go.yml --- .github/workflows/go.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9514391..7584e88 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,3 +29,12 @@ jobs: - name: Build run: go build -v ./... + + - name: Create release ZIP + run: mkdir -p release && cp WiiSOAP release/ && cp config.example.xml release/ && zip -r wiisoap.zip release/ + + - name: Upload release ZIP + uses: actions/upload-artifact@v3 + with: + name: wiisoap-linux + path: wiisoap.zip