Skip to content

Bump the minor-patch group across 1 directory with 6 updates (#171) #37

Bump the minor-patch group across 1 directory with 6 updates (#171)

Bump the minor-patch group across 1 directory with 6 updates (#171) #37

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: API build
env:
PROJECT_PATH: 'src/DateNight.Api'
OUTPUT_PATH: 'artifacts/DateNight.Api'
DOTNET_VERSION: '8.x'
on:
push:
branches:
- main
paths:
- 'src/**' # only run when changes are made to src/ folder
- '!src/DateNightApp/**' # ignore app project changes
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{env.DOTNET_VERSION}}
- name: Install dependencies
run: dotnet restore ${{env.PROJECT_PATH}}
- name: Build
run: dotnet build ${{env.PROJECT_PATH}} --no-restore --configuration Release
- name: Publish
run: dotnet publish ${{env.PROJECT_PATH}} --no-build --configuration Release --output ${{env.OUTPUT_PATH}}
- name: Upload Publish artifact for deployment job
uses: actions/upload-artifact@v2
with:
name: datenight-api
path: ${{env.OUTPUT_PATH}}
deploy:
runs-on: windows-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v2
with:
name: datenight-api
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'fmcgarry-datenight'
slot-name: 'production'
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
package: .