Bump MySqlConnector from 2.3.1 to 2.3.5 #135
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |