Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Update README.md

Update README.md #80

Workflow file for this run

name: Application delivery
on:
push:
branches:
- main
jobs:
web-deploy:
name: Deploy
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build project
run: dotnet build --configuration Release --property:OutputPath=../
- name: Delivery files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: ${{ vars.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ${{ vars.FTP_SERVER_DIR }}