Files
Test/.gitea/workflows/buildproject.yaml
Fynn Wittich 76a163f1d3
All checks were successful
Gitea Actions Demo / Dotnet 8.0.405 sample (push) Successful in 1m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
Update buildproject.yaml
2025-01-18 17:33:51 +01:00

19 lines
496 B
YAML

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.405' ]
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 publish GiteaTest.sln -p:PublishProfile=PublishLinuxX64