build/.forgejo/workflows/default.yml
Louis Seubert 1eb1846f5e
All checks were successful
dotnet publish / package (8.0) (push) Successful in 22s
build: add more projects for sdks
Add projects for creating new sdk based msbuild projects.
2024-03-24 10:50:03 +01:00

42 lines
No EOL
1.4 KiB
YAML

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 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: |
if [[ ${{ github.ref_name }} =~ [0-9]+.[0-9]+.[0-9]+ ]]
then
PROJECT_VERSION="${{ github.ref_name }}"
PROJECT_VERSION_SUFFIX=""
else
PROJECT_VERSION="1.0.0"
PROJECT_VERSION_SUFFIX="-unstable"
fi
dotnet pack -p:version="${PROJECT_VERSION}${PROJECT_VERSION_SUFFIX}" -p:ContinuousIntegrationBuild=true
- name: .NET test
shell: bash
run: |
dotnet test
- name: NuGet publish
if: ${{ github.ref_type == 'tag' }}
shell: bash
run: |
dotnet nuget push -k "${{ secrets.geekeey_package_registry }}" artifacts/package/release/shipping/*.nupkg