This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
Create woodpecker.yaml #282
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dotnet package | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: make | |
# - name: Capture Artifacts | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: Artifacts | |
# path: Client/bin/Release/net7.0 |