feat: initial project commit
Some checks failed
dotnet publish / package (8.0) (push) Failing after 8s
Some checks failed
dotnet publish / package (8.0) (push) Failing after 8s
This commit is contained in:
commit
87a93fa2df
39 changed files with 3658 additions and 0 deletions
29
.forgejo/workflows/default.yml
Normal file
29
.forgejo/workflows/default.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
name: dotnet publish
|
||||
on:
|
||||
push:
|
||||
tags: [ '[0-9]+.[0-9]+.[0-9]+' ]
|
||||
branches: [ 'main', 'develop' ]
|
||||
|
||||
jobs:
|
||||
package:
|
||||
runs-on: debian-latest
|
||||
strategy:
|
||||
matrix:
|
||||
dotnet-version: [ '8.0' ]
|
||||
container: mcr.microsoft.com/dotnet/sdk:${{ matrix.dotnet-version }}
|
||||
steps:
|
||||
- uses: https://git.geekeey.de/actions/checkout@1
|
||||
- name: NuGet login
|
||||
shell: bash
|
||||
run: |
|
||||
# This token is readonly and can only be used for restore
|
||||
dotnet nuget update source geekeey --store-password-in-clear-text \
|
||||
--username "${{ github.actor }}" --password "${{ github.token }}"
|
||||
- name: .NET pack
|
||||
shell: bash
|
||||
run: |
|
||||
dotnet pack -p:ContinuousIntegrationBuild=true
|
||||
- name: .NET test
|
||||
shell: bash
|
||||
run: |
|
||||
dotnet test
|
Loading…
Add table
Add a link
Reference in a new issue