Merge pull request #55 from houseofcat/main #33
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: publish | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
tags: | |
description: 'Manual Publish' | |
required: true | |
push: | |
branches: [ 'publish' ] | |
pull_request: | |
branches: [ 'publish' ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.x.x' | |
- name: Install dependencies | |
run: dotnet restore RabbitMQ.Dataflows.sln | |
- name: Build | |
run: dotnet build RabbitMQ.Dataflows.sln --configuration Release --no-restore | |
- name: Publish HouseofCat.Compression | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Compression/HouseofCat.Compression.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.Data | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Data/HouseofCat.Data.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.Dataflows | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Dataflows/HouseofCat.Dataflows.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.Encryption | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Encryption/HouseofCat.Encryption.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.Hashing | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Hashing/HouseofCat.Hashing.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.RabbitMQ | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.RabbitMQ/HouseofCat.RabbitMQ.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.Serialization | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Serialization/HouseofCat.Serialization.csproj | |
INCLUDE_SYMBOLS: true | |
- name: Publish HouseofCat.Utilities | |
uses: alirezanet/[email protected] | |
continue-on-error: true | |
with: | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
VERSION_FILE_PATH: version.props | |
PROJECT_FILE_PATH: src/HouseofCat.Utilities/HouseofCat.Utilities.csproj | |
INCLUDE_SYMBOLS: true |