Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
InvoxiPlayGames committed Sep 29, 2022
0 parents commit 5393de0
Show file tree
Hide file tree
Showing 11 changed files with 1,049 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build (Windows)

on: [push]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Setup NuGet
uses: NuGet/setup-nuget@v1
- name: Build Solution
run: |
cd $GITHUB_WORKSPACE
nuget restore RB3EHelper.sln
msbuild.exe RB3EHelper.sln /p:platform="Any CPU" /p:configuration="Release"
- name: Upload
uses: actions/upload-artifact@v2
with:
name: RB3EHelper
path: RB3EHelper/bin/Release/net6.0-windows
Loading

0 comments on commit 5393de0

Please sign in to comment.