Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
16 lines
500 B
YAML
16 lines
500 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v5
|
|
- uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: '8.0.x'
|
|
- run: dotnet --list-sdks
|
|
- run: dotnet --list-runtimes
|
|
- run: dotnet build -f win-x64 --property:EnableWindowsTargeting=true ./BlueMine/BlueMine.csproj |