Skip to content

Merge pull request #11 from skylab-tech/SCD-4-add-bg-to-photo-output #15

Merge pull request #11 from skylab-tech/SCD-4-add-bg-to-photo-output

Merge pull request #11 from skylab-tech/SCD-4-add-bg-to-photo-output #15

Workflow file for this run

name: 'Studio Client .NET NuGet Release'
on:
push:
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
runs-on: ubuntu-latest
env:
PROJECT_PATH: 'StudioClient/StudioClient.csproj'
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}/output
NUGET_SOURCE_URL: 'https://api.nuget.org/v3/index.json'
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Build
run: dotnet build ${{ env.PROJECT_PATH }} --configuration Release
- name: 'Get Version'
id: version
uses: battila7/get-version-action@v2
- name: Pack
run: dotnet pack ${{ env.PROJECT_PATH }} --no-restore --no-build --configuration Release --include-symbols -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
- name: Nuget Push
run: dotnet nuget push ${{ env.PACKAGE_OUTPUT_DIRECTORY }}/*.nupkg -s ${{ env.NUGET_SOURCE_URL }} -k ${{ env.NUGET_API_KEY }} --skip-duplicate