Skip to content

add:azureDeployAdded #1

add:azureDeployAdded

add:azureDeployAdded #1

Workflow file for this run

name: Build and Deploy to Azure
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet publish -c Release -o app
- name: Deploy to Azure Web App
uses: azure/webapps-deploy@v2
with:
app-name: apekade-server
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
package: .