imex_erp_updater/.gitea/workflows/windows_build.yml
monheim 3ad0c4e7aa
Some checks failed
Windows Build / build (push) Failing after 2s
Update .gitea/workflows/windows_build.yml
2025-04-20 16:13:10 +02:00

19 lines
367 B
YAML

name: Windows Build
on: [push]
jobs:
build:
runs-on: windows-host
defaults:
run:
shell: powershell
steps:
- name: Install Rust
run: |
winget install --id Rustlang.Rustup
rustup default stable
cargo --version
- name: Run Main Script
run: Write-Output "Running on Windows Server!"