Improve console output look #26
This file contains hidden or 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: Gawe 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: | |
| paths: | |
| - 'src/**' | |
| branches: [master, dev] | |
| pull_request: | |
| branches: [master] | |
| permissions: | |
| contents: | |
| write | |
| packages: | |
| write | |
| pull-requests: | |
| write | |
| checks: | |
| write | |
| jobs: | |
| build: | |
| uses: SAPTeamDEV/Gawe/.github/workflows/dotnet.yml@master | |
| with: | |
| deploy: ${{ !contains(inputs.deploy, 'false') }} | |
| nuget-deploy: ${{ !contains(inputs.nuget-deploy, 'false') }} | |
| secrets: inherit |