From f9fea8c189348e635ff6abf7c2c3eaef5d3e8b95 Mon Sep 17 00:00:00 2001 From: SavageCore Date: Wed, 13 Sep 2023 22:20:45 +0100 Subject: [PATCH] Only do the release step once (on Windows) --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b5d992..9a1da75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,9 @@ jobs: pip install -r requirements.txt - name: Build with pyinstaller for ${{matrix.TARGET}} run: ${{matrix.CMD_BUILD}} + # Only run on Windows - name: Create Release + if: matrix.os == 'windows-latest' uses: softprops/action-gh-release@v1 with: draft: true