Bump Microsoft.Azure.Cosmos from 3.34.0 to 3.35.2 (#94) #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: '7.x' | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/**' # only run when changes are made to src/ folder | |
- '!src/DateNight.App/**' # 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: . |