-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/backend' into feature/save-to-db
- Loading branch information
Showing
35 changed files
with
1,628 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Build and deploy .NET Core application to Web App richiimj with API Management Service RIchiiMjApi-GameApi | ||
on: | ||
push: | ||
branches: | ||
- feature/backend | ||
env: | ||
AZURE_WEBAPP_NAME: richiimj | ||
AZURE_WEBAPP_PACKAGE_PATH: MjCalcApi\publish | ||
AZURE_APIM_RESOURCE_PATH: / | ||
AZURE_APIM_RESOURCEGROUP: MJ | ||
AZURE_APIM_SERVICENAME: RIchiiMjApi | ||
AZURE_APIM_API_ID: GameApi | ||
AZURE_APIM_APPSERVICEURL: https://richiimj.azurewebsites.net:80/ | ||
SWASHBUCLE_ASPNET_CORE_CLI_PACKAGE_VERSION: 6.2.3 | ||
SWASHBUCKLE_DOTNET_CORE_VERSION: 3.1.x | ||
API_IMPORT_SPECIFICATION_PATH: MjCalcApi\publish\swagger.json | ||
API_IMPORT_DLL: MjCalcApi\publish\MjCalcApi.dll | ||
API_IMPORT_VERSION: v1 | ||
CONFIGURATION: Release | ||
DOTNET_CORE_VERSION: 6.0.x | ||
WORKING_DIRECTORY: MjCalcApi | ||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
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: windows-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.richiimj_FFFF }} | ||
- name: Azure Login | ||
uses: azure/login@v1 | ||
with: | ||
creds: ${{ secrets.RIchiiMjApi_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 |
Oops, something went wrong.