Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add build github action #233

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
Create main.yml
  • Loading branch information
jaydns committed Oct 27, 2020
commit 8ea8a603a4ce8dec16156e1429c712701b9990da
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/[email protected]

# 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; cd ..

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