Skip to content

Commit 8aee17b

Browse files
CloudLib PROD workflow
1 parent be4946b commit 8aee17b

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# This workflow will build and push a .NET 6 web API to an Azure Web App that is manually triggered by user.
2+
#
3+
# This workflow assumes you have already created the target Azure App Service web app.
4+
# For instructions see https://docs.microsoft.com/azure/app-service/app-service-plan-manage#create-an-app-service-plan
5+
#
6+
# To configure this workflow:
7+
#
8+
# 1. For Linux apps, add an app setting called WEBSITE_WEBDEPLOY_USE_SCM and set it to true in your app **before downloading the file**.
9+
# For more instructions see: https://docs.microsoft.com/azure/app-service/configure-common#configure-app-settings
10+
#
11+
# 2. Set up a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE with the value of your Azure publish profile.
12+
# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret
13+
#
14+
# 3. Change the values for the AZURE_WEBAPP_NAME, AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables (below).
15+
#
16+
# For more information on GitHub Actions for Azure, refer to https://github.com/Azure/Actions
17+
# For more samples to get started with GitHub Action workflows to deploy to Azure, refer to https://github.com/Azure/actions-workflow-samples
18+
name: Prod|Backend|CloudLibrary - Deploy to Azure
19+
on:
20+
#manually trigger deploy
21+
workflow_dispatch:
22+
# Trigger the workflow on push,
23+
# but only for the cesmii/main branch
24+
#push:
25+
# branches:
26+
# - cesmii/main
27+
28+
env:
29+
# set this to your application's name
30+
AZURE_WEBAPP_NAME: 'cloudlib-back'
31+
# set this to the path to your solution file, defaults to the repository root (this is the folder in the git repo)
32+
SOLUTION_DIRECTORY: '.'
33+
# set this to the path to your web app project, defaults to the repository root (this is the folder in the git repo)
34+
PROJECT_DIRECTORY: './UACloudLibraryServer'
35+
# Solution file to use
36+
SOLUTION_FILE: 'UA-CloudLibrary.sln'
37+
# Project file to use
38+
PROJECT_NAME: 'UA-CloudLibrary'
39+
PUBLISH_FOLDER_RELATIVE: "./publish"
40+
PUBLISH_FOLDER: "/publish"
41+
42+
AZURE_FUNCTIONAPP_NAME: CloudLibSyncAzureFunction # set this to your application's name
43+
AZURE_FUNCTIONAPP_PACKAGE_PATH: './CloudLibSyncAzureFunction' # set this to the path to your web app project, defaults to the repository root
44+
45+
# set this to the .NET core version to use
46+
NETCORE_VERSION: "6.0.x"
47+
48+
jobs:
49+
build:
50+
name: Build and Deploy .NET6 Web API
51+
runs-on: ubuntu-latest
52+
steps:
53+
- uses: actions/checkout@v2
54+
with:
55+
fetch-depth: 0
56+
- name: Set up dotnet Core ${{ env.NETCORE_VERSION }}
57+
uses: actions/setup-dotnet@v1
58+
with:
59+
dotnet-version: ${{ env.NETCORE_VERSION }}
60+
- name: Restore dependencies (${{env.SOLUTION_FILE}})
61+
run: dotnet restore ${{env.SOLUTION_FILE}}
62+
working-directory: ${{env.SOLUTION_DIRECTORY}}
63+
- name: Build (${{env.PROJECT_DIRECTORY}})
64+
run: dotnet build --configuration Release --no-restore
65+
working-directory: ${{env.PROJECT_DIRECTORY}}
66+
- name: Publish (${{env.PROJECT_DIRECTORY}}) TO ${{ env.PUBLISH_FOLDER_RELATIVE }}
67+
run: dotnet publish --configuration Release --output ${{ env.PUBLISH_FOLDER_RELATIVE }}
68+
working-directory: ${{env.PROJECT_DIRECTORY}}
69+
- name: 'Resolve Project Dependencies Using Dotnet'
70+
shell: bash
71+
run: |
72+
pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
73+
dotnet build --configuration Release --output ./output
74+
popd
75+
- name: 'Deploy to Azure WebApp'
76+
uses: azure/webapps-deploy@v2
77+
with:
78+
app-name: ${{ env.AZURE_WEBAPP_NAME }}
79+
publish-profile: ${{ secrets.AZURE_CLOUDLIB_BACK_PUBLISHSETTINGS }}
80+
package: ${{ env.PROJECT_DIRECTORY }}${{ env.PUBLISH_FOLDER }}
81+
- name: 'Run Azure Functions Action'
82+
uses: Azure/functions-action@v1
83+
id: fa
84+
with:
85+
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
86+
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
87+
publish-profile: ${{ secrets.AZURE_CLOUDLIB_SYNC_PUBLISHSETTINGS }}

0 commit comments

Comments
 (0)