Skip to content

Merge pull request #235 from InternAcademy/dev #37

Merge pull request #235 from InternAcademy/dev

Merge pull request #235 from InternAcademy/dev #37

Workflow file for this run

name: Build and deploy .NET Core application to Web App MealMaster
on:
push:
branches:
- production
env:
AZURE_WEBAPP_NAME: MealMaster
AZURE_WEBAPP_PACKAGE_PATH: ./publish
CONFIGURATION: Release
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: ./src/server/CookingApp
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Restore
run: dotnet restore "${{ env.WORKING_DIRECTORY }}/CookingApp.sln"
- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}/CookingApp.sln" --configuration ${{ env.CONFIGURATION }} --no-restore
- name: Test
run: dotnet test "${{ env.WORKING_DIRECTORY }}/CookingApp.sln" --no-build
- name: Publish
run: dotnet publish "${{ env.WORKING_DIRECTORY }}/CookingApp.sln" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}"
- name: Publish Artifacts
uses: actions/upload-artifact@v3
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@v3
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 }}
publish-profile: ${{ secrets.MealMaster_6A7E }}
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}