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

Update main.yml

Update main.yml #66

Workflow file for this run

name: Application delivery
on:
push:
branches:
- main
- spec5
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build project
run: dotnet build --configuration Release --output ../
- 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 }}