chore(ci): remove build-windows job

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Thomas SharedInbox
2026-05-15 10:08:29 +02:00
co-authored by Claude Sonnet 4.6
parent 4e6c3d73fe
commit d9e6500cec
-32
View File
@@ -59,38 +59,6 @@ jobs:
SSH_HOST: ${{ secrets.SSH_HOST }}
run: nix develop --no-warn-dirty --command task deploy-linux-to-server
build-windows:
# Enable once a self-hosted runner with label "windows-runner" is registered.
name: Build & Deploy Windows Release
runs-on: windows-runner
needs: check
if: false
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 50
- name: Build Windows
run: task build-windows-release
- name: Set up SSH key
continue-on-error: true
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p $env:USERPROFILE\.ssh
$env:SSH_PRIVATE_KEY | Out-File -FilePath "$env:USERPROFILE\.ssh\id_rsa" -Encoding ascii
icacls "$env:USERPROFILE\.ssh\id_rsa" /inheritance:r /grant:r "$env:USERNAME:F"
- name: Deploy Windows to server
continue-on-error: true
env:
SSH_USER: ${{ secrets.SSH_USER }}
SSH_HOST: ${{ secrets.SSH_HOST }}
run: task deploy-windows-to-server
deploy-playstore:
name: Build & Deploy to Play Store
runs-on: self-hosted