Skip to content

Commit

Permalink
Merge pull request #40 from dabao40/revert-39-main
Browse files Browse the repository at this point in the history
Revert "fix build errors"
  • Loading branch information
dabao40 authored Oct 3, 2024
2 parents 7a65160 + 6921836 commit c41702f
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 89 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,30 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/cache@v4
- uses: actions/cache@v2
with:
path: |
~/.nuget/packages
~/.cache/bepinex
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/checkout@v4
- uses: actions/checkout@v2
with:
submodules: true

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x

- name: Build
run: dotnet build TheOtherRoles/TheOtherRoles.csproj --configuration Release

- name: Upload TheOtherRoles
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v2
with:
name: TheOtherRoles.dll
path: TheOtherRoles/bin/Release/net6.0/TheOtherRoles.dll
path: TheOtherRoles/bin/Release/net6.0/TheOtherRoles.dll

Loading

0 comments on commit c41702f

Please sign in to comment.