Skip to content

🔀 Merge pull request #360 from COS301-SE-2024/development #32

🔀 Merge pull request #360 from COS301-SE-2024/development

🔀 Merge pull request #360 from COS301-SE-2024/development #32

Workflow file for this run

# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions
name: Deploy BeakPeekBirdApi
env:
# DOTNET_ROOT: ./dotnet/BeakPeekApi/
DOTNET_ROOT: .
AZURE_SQL_CONNECTIONSTRING: ${{ secrets.AZURE_SQL_CONNECTIONSTRING }}
on:
push:
branches:
- main
- development
paths-ignore:
- 'doc/**'
- 'res/**'
- 'beakpeek/**'
- 'dotnet/UserApi/**'
workflow_dispatch:
jobs:
test:
uses: ./.github/workflows/dotnet.yml
build:
runs-on: ubuntu-latest
# needs: test
steps:
- uses: actions/checkout@v4
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.x'
include-prerelease: true
- name: Get App Setting
run: |
cd ./dotnet/BirdApi/BeakPeekApi
cp ../../../appsettings.json .
- name: Build with dotnet
run: dotnet build --configuration Release ./dotnet/BirdApi/BeakPeekApi/BeakPeekApi.csproj
- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/BeakPeekApi ./dotnet/BirdApi/BeakPeekApi/BeakPeekApi.csproj
- name: Copy CSV files
run: |
mkdir -p ${{env.DOTNET_ROOT}}/BeakPeekApi/res/species
cp -r ./res/species/* ${{env.DOTNET_ROOT}}/BeakPeekApi/res/species/
mkdir -p ${{env.DOTNET_ROOT}}/BeakPeekApi/res/species_list/
cp -r ./res/species_list/* ${{env.DOTNET_ROOT}}/BeakPeekApi/res/species_list/
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
name: .net-app
path: ${{env.DOTNET_ROOT}}/BeakPeekApi
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
permissions:
id-token: write #This is required for requesting the JWT
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
with:
name: .net-app
- name: Login to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_F91BBE34AB4B45898BF82BFADF359BE8 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_F1EE328E09964C2EA0E92A6629C60647 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_97F61458BB2B43A89AB06261472988FE }}
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'BeakPeekBirdApi'
slot-name: 'Production'
package: .