Update buildproject.yaml, GiteaTest.csproj.user, PublishLinuxX64.pubxml, and 3 more files
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
Gitea Actions Demo / Dotnet 8.0.12 sample (push) Has been cancelled

This commit is contained in:
2025-01-18 17:24:05 +01:00
parent a95558689b
commit edebb250ab
6 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: [ '8.0.12' ]
name: Dotnet ${{ matrix.dotnet }} sample
steps:
- uses: actions/checkout@master
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- run: dotnet build GiteaTest.sln