Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build AsyncRAT

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v1

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.2

# Install NuGet packages
- name: Install NuGet Packages
run: nuget restore AsyncRAT-C#/AsyncRAT-Sharp.sln

# Build solution
- name: Build solution
run: msbuild -nologo -v:m -p:Configuration=${{ matrix.configuration }} AsyncRAT-C#/AsyncRAT-Sharp.sln

# Upload artifacts
- uses: actions/upload-artifact@v2
with:
name: AsyncRAT-${{ matrix.configuration }}
path: D:\a\AsyncRAT-C-Sharp\AsyncRAT-C-Sharp\AsyncRAT-C#\Binaries\${{ matrix.configuration }}\