result/.forgejo/workflows/release.yml

31 lines
972 B
YAML
Raw Normal View History

2024-04-14 15:42:13 +00:00
name: release
on:
push:
tags: [ "[0-9]+.[0-9]+.[0-9]+" ]
2024-04-14 15:42:13 +00:00
jobs:
release:
name: dotnet release workflow
2024-04-14 15:42:13 +00:00
runs-on: debian-latest
strategy:
matrix:
dotnet-version: [ "8.0" ]
2024-04-14 15:42:13 +00:00
container: mcr.microsoft.com/dotnet/sdk:${{ matrix.dotnet-version }}
steps:
- uses: https://git.geekeey.de/actions/checkout@1
- name: nuget login
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: dotnet pack
run: |
dotnet pack -p:ContinuousIntegrationBuild=true
- name: dotnet nuget push
run: |
# The token used here is only intended to publish packages
dotnet nuget push -k "${{ secrets.geekeey_package_registry }}" \
artifacts/package/release/Geekeey.Extensions.Result.*.nupkg