Skip to content

Merge pull request #91 from FmgLib/v8.5.1 #9

Merge pull request #91 from FmgLib/v8.5.1

Merge pull request #91 from FmgLib/v8.5.1 #9

Workflow file for this run

name: "Deploy to Nuget"
on:
workflow_dispatch:
push:
branches:
- master
- develop
env:
PROJECT_PATH: 'libs\FmgLib.MauiMarkup\FmgLib.MauiMarkup.csproj'
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output
jobs:
deploy:
name: 'Deploy'
runs-on: 'windows-latest'
steps:
- name: 'Checkout'
uses: actions/checkout@v3
- name: 'Install dotnet'
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: 'Restore package'
run: dotnet restore ${{ env.PROJECT_PATH }}
- name: 'Build project'
run: dotnet build ${{ env.PROJECT_PATH }} --no-restore --configuration Release