Skip to content

another test

another test #63

Workflow file for this run

name: .NET CI
on:
workflow_dispatch:
inputs:
deploy:
description: Create and Deploy package
type: boolean
default: true
nuget-deploy:
description: Deploy package to NuGet gallery
type: boolean
default: true
push:
branches: [master, dev]
pull_request:
branches: [master]
permissions:
contents:
write
packages:
write
pull-requests:
write
jobs:
build:
uses: SAPTeamDEV/Gawe/.github/workflows/dotnet.yml@master
with:
deploy: ${{ !contains(inputs.deploy, 'false') }}
nuget-deploy: ${{ contains(inputs.nuget-deploy, 'true') }} # a workaround for runs outside of dispatch
secrets: inherit