test: Test against multiple versions and configurations of Paperless #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: [ master ] | |
tags: [ v*.*.* ] | |
paths-ignore: | |
- '**.md' | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
jobs: | |
build-artifacts: | |
strategy: | |
matrix: | |
project: | |
- VMelnalksnis.PaperlessDotNet | |
- VMelnalksnis.PaperlessDotNet.DependencyInjection | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-dotnet@v4.0.0 | |
- name: Publish project | |
id: publish | |
run: > | |
deployment/publish.sh | |
"${{ matrix.project }}" | |
"${{ github.run_number }}" | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4.3.0 | |
with: | |
name: ${{ steps.publish.outputs.artifact-name }} | |
path: ${{ steps.publish.outputs.artifact }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4.3.0 | |
with: | |
name: ${{ steps.publish.outputs.symbols-name }} | |
path: ${{ steps.publish.outputs.symbols }} | |
create-release: | |
name: Create release | |
needs: build-artifacts | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/download-artifact@v4.1.1 | |
id: download | |
with: | |
path: artifacts | |
- name: Create release | |
uses: softprops/action-gh-release@v0.1.15 | |
with: | |
draft: true | |
prerelease: false | |
tag_name: ${{ github.ref_name }} | |
generate_release_notes: true | |
fail_on_unmatched_files: true | |
files: | | |
${{ steps.download.outputs.download-path }}/**/*.nupkg | |
- name: NuGet Push | |
run: dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json | |
working-directory: ${{ steps.download.outputs.download-path }} | |
- name: NuGet Push Symboles | |
run: dotnet nuget push "**/*.snupkg" --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json | |
working-directory: ${{ steps.download.outputs.download-path }} |