Files
netch/.github/workflows/build.yml
ChsBuffer 03c3c151bf Update CI
2021-10-15 20:44:07 +08:00

31 lines
611 B
YAML

name: Netch Build CI
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: MSBuild
uses: microsoft/setup-msbuild@v1.0.2
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Build
shell: pwsh
run: |
.\build.ps1 -Configuration Release -OutputPath release
- name: Upload
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v2
with:
name: Netch
path: release