Skip to content

Remove deploy working directory #2

Remove deploy working directory

Remove deploy working directory #2

Workflow file for this run

name: Safe Bookstore deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore tools
run: dotnet tool restore
- name: Test
run: dotnet run devopstests
- name: Build
working-directory: ./update
run: dotnet run bundle
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Deploy
run: dotnet run azure