update nuget packages #128
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 Olive Generator Package | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| configuration: [Release] | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Publish Olive Api Proxy Generator Package | |
| uses: Geeksltd/publish-nuget@v3.8.5 | |
| with: | |
| PROJECT_FILE_PATH: ApiProxyGenerator/Olive.ApiProxyGenerator.csproj | |
| PACKAGE_NAME: generate-api-proxy | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Olive Data End Point Generator Package | |
| uses: Geeksltd/publish-nuget@v3.8.5 | |
| with: | |
| PROJECT_FILE_PATH: DataEndPointGenerator/Olive.DataEndPointGenerator.csproj | |
| PACKAGE_NAME: generate-data-endpoint-proxy | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Olive EventBus Command Generator Package | |
| uses: Geeksltd/publish-nuget@v3.8.5 | |
| with: | |
| PROJECT_FILE_PATH: EventBusCommandGenerator/Olive.EventBusCommandGenerator.csproj | |
| PACKAGE_NAME: generate-eventbus-command-proxy | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} |