fix: removed --source parameter from example (#14)
#12
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: Publish Template NuGet | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| publish-nuget: | |
| runs-on: windows-latest | |
| name: publish template nuget | |
| env: | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-dotnet@v3 | |
| - name: Publish Bicep.LocalDeploy.Templates template package on version change | |
| uses: alirezanet/[email protected] | |
| with: | |
| PACKAGE_NAME: Bicep.LocalDeploy.Templates | |
| PROJECT_FILE_PATH: src/Bicep.LocalDeploy.Templates/Bicep.LocalDeploy.Templates.csproj | |
| VERSION_FILE_PATH: Nuget/Build.Templates.props | |
| TAG_COMMIT: false | |
| NO_BUILD: true |