Files
TunnelX/.github/workflows/build.yml
T
2026-05-12 12:19:45 +03:30

20 lines
389 B
YAML

name: build
on:
push:
branches: ["main"]
pull_request:
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: "8.0.x"
- name: Restore
run: dotnet restore AppTunnel.sln
- name: Build
run: dotnet build AppTunnel.sln -c Release --no-restore