Files
TunnelX/.github/workflows/build.yml
T
2026-05-11 16:27:14 +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@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore
run: dotnet restore AppTunnel.sln
- name: Build
run: dotnet build AppTunnel.sln -c Release --no-restore