mirror of
https://github.com/MaxiFan/TunnelX.git
synced 2026-05-19 08:04:41 +03:00
20 lines
389 B
YAML
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
|