Skip to content

Bump FluentFTP from 49.0.1 to 49.0.2 #136

Bump FluentFTP from 49.0.1 to 49.0.2

Bump FluentFTP from 49.0.1 to 49.0.2 #136

Workflow file for this run

name: "Make Sure Pull Request Builds"
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.100' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Publish
run: |
dotnet publish -r win-x64 --self-contained false -o bin/
dotnet publish -r linux-x64 --self-contained false -o bin/
mv bin/Reecon bin/reecon-linux
mv bin/Reecon.exe bin/Reecon-windows.exe