Update buildproject.yaml, GiteaTest.csproj.user, PublishLinuxX64.pubxml, and 3 more files
This commit is contained in:
18
.gitea/workflows/buildproject.yaml
Normal file
18
.gitea/workflows/buildproject.yaml
Normal 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
|
||||
Reference in New Issue
Block a user