Skip to content

Update README.md

Update README.md #162

Workflow file for this run

name: Nightly
on:
push:
branches: [ master ]
jobs:
windowsBuild:
name: Windows build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x
- name: build
run: Scripts/PublishAll.cmd /ni
- name: Upload to FTP
uses: isthatcentered/dist-to-ftp@master
with:
host: ${{ secrets.FTPADDRESS }}
user: ${{ secrets.FTPUSER }}
password: ${{ secrets.FTPPASSWORD }}
path: Dist/Packages/
into: Nightlies/
cleanupExisting: false