feat: added feign client to connect this api to perustars-ml-service api #12
This file contains 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: Build and deploy .NET Core application to Web App PerustarsDDDAPI with API Management Service PeruStarsDDDAPIManagementService-PeruStarsDDDAPIManagement | |
on: | |
push: | |
branches: | |
- develop | |
env: | |
AZURE_WEBAPP_NAME: PerustarsDDDAPI | |
AZURE_WEBAPP_PACKAGE_PATH: PERUSTARS/publish | |
AZURE_APIM_RESOURCE_PATH: /perustarsddd | |
AZURE_APIM_RESOURCEGROUP: peru-stars | |
AZURE_APIM_SERVICENAME: PeruStarsDDDAPIManagementService | |
AZURE_APIM_API_ID: PeruStarsDDDAPIManagement | |
AZURE_APIM_APPSERVICEURL: https://perustarsdddapi.azurewebsites.net | |
SWASHBUCLE_ASPNET_CORE_CLI_PACKAGE_VERSION: 5.6.3 | |
SWASHBUCKLE_DOTNET_CORE_VERSION: 3.1.x | |
API_IMPORT_SPECIFICATION_PATH: PERUSTARS/publish/swagger.json | |
API_IMPORT_DLL: PERUSTARS/PERUSTARS/bin/Release/net5.0/PERUSTARS.dll | |
API_IMPORT_VERSION: v1 | |
CONFIGURATION: Release | |
DOTNET_CORE_VERSION: 5.0.x | |
WORKING_DIRECTORY: PERUSTARS/PERUSTARS/ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/[email protected] | |
with: | |
include-prerelease: True | |
dotnet-version: ${{ env.DOTNET_CORE_VERSION }} | |
- name: Setup SwashBuckle .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: ${{ env.SWASHBUCKLE_DOTNET_CORE_VERSION }} | |
- name: Restore | |
run: dotnet restore ${{ env.WORKING_DIRECTORY }} | |
- name: Build | |
run: dotnet build ${{ env.WORKING_DIRECTORY }} --configuration ${{ env.CONFIGURATION }} --no-restore | |
- name: Test | |
run: dotnet test ${{ env.WORKING_DIRECTORY }} --no-build | |
- name: Publish | |
run: dotnet publish ${{ env.WORKING_DIRECTORY }} --configuration ${{ env.CONFIGURATION }} --no-build --output ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
- name: Install Swashbuckle CLI .NET Global Tool | |
run: dotnet tool install --global Swashbuckle.AspNetCore.Cli --version ${{ env.SWASHBUCLE_ASPNET_CORE_CLI_PACKAGE_VERSION }} | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
- name: Generate Open API Specification Document | |
run: swagger tofile --output "${{ env.API_IMPORT_SPECIFICATION_PATH }}" "${{ env.API_IMPORT_DLL }}" "${{ env.API_IMPORT_VERSION }}" | |
- name: Publish Artifacts | |
uses: actions/[email protected] | |
with: | |
name: webapp | |
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact from build job | |
uses: actions/download-artifact@v2 | |
with: | |
name: webapp | |
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
- name: Deploy to Azure WebApp | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: ${{ env.AZURE_WEBAPP_NAME }} | |
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
publish-profile: ${{ secrets.PerustarsDDDAPI_FFFF }} | |
- name: Azure Login | |
uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.PeruStarsDDDAPIManagementService_SPN }} | |
- name: Import API into Azure API Management | |
run: az apim api import --path "${{ env.AZURE_APIM_RESOURCE_PATH }}" --resource-group "${{ env.AZURE_APIM_RESOURCEGROUP }}" --service-name "${{ env.AZURE_APIM_SERVICENAME }}" --api-id "${{ env.AZURE_APIM_API_ID }}" --service-url "${{ env.AZURE_APIM_APPSERVICEURL }}" --specification-path "${{ env.API_IMPORT_SPECIFICATION_PATH }}" --specification-format OpenApi --subscription-required false | |
- name: logout | |
run: > | |
az logout |