Update .gitea/workflows/windows_build.yml

This commit is contained in:
monheim 2025-04-20 23:05:23 +02:00
parent bef2cb8a12
commit 9f64654423

View File

@ -1,22 +1,22 @@
name: Windows Build #name: Windows Build
on: [push] #on: [push]
jobs: #jobs:
build: # build:
runs-on: windows # runs-on: windows
defaults: # defaults:
run: # run:
shell: powershell # shell: powershell
#container: #container:
# Disable pseudo-terminal emulation # Disable pseudo-terminal emulation
#options: --pty=false #options: --pty=false
steps: # steps:
- name: Install Rust # - name: Install Rust
run: | # run: |
rustup update # rustup update
rustup default nightly # rustup default nightly
cargo --version # cargo --version
- name: Run Main Script # - name: Run Main Script
run: echo "Running on Windows Server!" # run: echo "Running on Windows Server!"