name: Desktop Release on: push: branches: - master jobs: release: runs-on: windows steps: - name: Checkout uses: https://git.daemonlord.ru/actions/checkout@v4 with: fetch-depth: 0 tags: true - name: Ensure Python 3.13 shell: powershell run: | if (Get-Command python -ErrorAction SilentlyContinue) { python --version } elseif (Get-Command py -ErrorAction SilentlyContinue) { $pyExe = py -3.13 -c "import sys; print(sys.executable)" if (-not $pyExe) { throw "Python 3.13 launcher is available, but interpreter was not found." } Split-Path $pyExe | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append python --version } else { throw "Python is not installed on runner. Install Python 3.13 and restart runner service." } - name: Install dependencies shell: powershell run: | python -m pip install --upgrade pip pip install -r requirements.txt pyinstaller - name: Extract app version id: extract_version shell: powershell run: | $version = python -c "from app_version import APP_VERSION; print(APP_VERSION)" "version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append Write-Host "Detected version: $version" - name: Stop if version already released id: stop shell: powershell run: | $version = "${{ steps.extract_version.outputs.version }}" git show-ref --tags --quiet --verify "refs/tags/$version" $tagExists = ($LASTEXITCODE -eq 0) $global:LASTEXITCODE = 0 if ($tagExists) { Write-Host "Version $version already released, stopping job." "CONTINUE=false" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } else { Write-Host "Version $version not released yet, continuing workflow..." "CONTINUE=true" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } exit 0 - name: Run tests if: env.CONTINUE == 'true' shell: powershell run: | python -m py_compile app_version.py main.py build.py tests/test_auth_relogin_smoke.py python -m unittest tests/test_auth_relogin_smoke.py - name: Build release zip if: env.CONTINUE == 'true' shell: powershell run: | python build.py - name: Ensure archive exists if: env.CONTINUE == 'true' shell: powershell run: | $version = "${{ steps.extract_version.outputs.version }}" $archivePath = "dist/AnabasisManager-$version.zip" if (-not (Test-Path $archivePath)) { throw "Archive not found: $archivePath" } - name: Configure git identity if: env.CONTINUE == 'true' shell: powershell run: | git config user.name "gitea-actions" git config user.email "gitea-actions@daemonlord.ru" - name: Create git tag if: env.CONTINUE == 'true' shell: powershell run: | $version = "${{ steps.extract_version.outputs.version }}" git tag "$version" git push origin "$version" - name: Create Gitea Release if: env.CONTINUE == 'true' uses: https://git.daemonlord.ru/actions/gitea-release-action@v1 with: server_url: https://git.daemonlord.ru repository: ${{ gitea.repository }} token: ${{ secrets.API_TOKEN }} tag_name: ${{ steps.extract_version.outputs.version }} name: Release ${{ steps.extract_version.outputs.version }} body: | Desktop release ${{ steps.extract_version.outputs.version }} files: | dist/AnabasisManager-${{ steps.extract_version.outputs.version }}.zip