From a237a7db3011339b149eeae04323d8adc9f9814d Mon Sep 17 00:00:00 2001 From: Artur Glavic Date: Fri, 13 Mar 2026 12:15:56 +0100 Subject: [PATCH] reactivate build --- .github/workflows/release.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 738addf..9d6b2e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,6 @@ on: jobs: test: runs-on: ubuntu-latest - if: false strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] @@ -108,7 +107,7 @@ jobs: dist/amor*.tar.gz build-windows: - #needs: [test] + needs: [test] runs-on: windows-latest if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "windows", "all_incl_release"]'), github.event.inputs.build-items)) }} @@ -154,10 +153,9 @@ jobs: shell: powershell run: | micromamba activate eos_build - echo "Set tag to $env:RELEASE_TAG" - #pyinstaller windows_build.spec - #cd dist\eos - #Compress-Archive -Path .\* -Destination "..\..\eos-${{ env.RELEASE_TAG }}.zip" + pyinstaller windows_build.spec + cd dist\eos + Compress-Archive -Path .\* -Destination ..\..\eos.zip - name: Update Release if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all_incl_release"]'), github.event.inputs.build-items)) }} uses: actions/gitea-release-action@v1