forked from Exiled-Official/EXILED
-
Notifications
You must be signed in to change notification settings - Fork 111
feat: Bump Lib.Harmony from 2.2.2 to 2.4.2 in /EXILED #129
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
Closed
Closed
Changes from 37 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
5d9370a
Bump Lib.Harmony from 2.2.2 to 2.3.3 in /EXILED
dependabot[bot] fc962bf
Merge branch 'master' into dependabot/nuget/EXILED/Lib.Harmony-2.3.3
louis1706 cde0333
Merge branch 'master' into dependabot/nuget/EXILED/Lib.Harmony-2.3.3
louis1706 088ba33
LabAPI Update (#435)
louis1706 0269f15
LabAPI Update 14.0.3 (#439)
louis1706 953288a
9.6.0-beta3
louis1706 bab5695
this will need to be revert
louis1706 6c751ff
push_nuget not working for LabAPI
louis1706 857edae
Fixing RoundEnd Patch
louis1706 925ee34
Adding CustomRole::Gravity
louis1706 478df81
Remove Testing Log
louis1706 7abb724
fix: Command events fix (#444)
VALERA771 3f6bea2
fix: Fixing UnlockingGenerator
louis1706 35ee723
Fix RoundEnd completelly
louis1706 6f63c3e
fix: Hurting event NRE fix (#443)
VALERA771 838b1d9
Merge branch 'dev' into LabAPI
louis1706 cde782f
9.6.0-beta4
louis1706 3226454
this will required to be revert
louis1706 586d1f0
fix: InteractingDoorEvent::CanInteract (#463)
louis1706 841a5ce
Fixed Error & InteractingScp330 IL Code
louis1706 8df2572
TODO: Fix THE CRASH ISSUE
louis1706 21560f6
Fix Consumed Event - doubt
louis1706 aaa01b9
Fix & Small change on UsingAndCancellingItemUse
louis1706 ba6d2ce
Fix an issue where HashSetPool was never return
louis1706 bf437c5
Fix IL CODE error & remove debug
louis1706 c59de13
Add warning in case of missing PrefabType
louis1706 a284315
Capybara Toy
louis1706 4a807e4
remove using
louis1706 883218f
Fix SpawningRagdoll not setting NetworkInfo
louis1706 e3c3cc2
Fix Ragdoll Scale & ConsumingEvent
louis1706 9125258
Missing NetworkInfo.Scale Argument
louis1706 154feb6
Fix: Door.Get(GameObject)
louis1706 6ae1304
TantrumHazard is always null
louis1706 73726f7
9.6.0-beta5
louis1706 c577619
Update EXILED_DLL_ARCHIVER_URL for LabAPI
louis1706 7567702
fix: use basegame validation for CustomInfo (#452)
obvEve 9e0dfd4
Merge branch 'LabAPI' into dependabot/nuget/EXILED/Lib.Harmony-2.3.3
louis1706 0657173
Update EXILED/EXILED.props
louis1706 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| name: Exiled Dev CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - LabAPI | ||
| pull_request: | ||
| branches: | ||
| - LabAPI | ||
| workflow_dispatch: | ||
|
|
||
| defaults: | ||
| run: | ||
| working-directory: ./EXILED | ||
|
|
||
| env: | ||
| EXILED_REFERENCES_URL: https://exmod-team.github.io/SL-References/LabAPI.zip | ||
| EXILED_REFERENCES_PATH: ${{ github.workspace }}/EXILED/References | ||
| EXILED_DLL_ARCHIVER_URL: https://github.com/ExMod-Team/EXILED-DLL-Archiver/releases/download/v1.8.1/EXILED-DLL-Archiver.exe | ||
|
|
||
| jobs: | ||
|
|
||
| build: | ||
|
|
||
| runs-on: windows-latest | ||
| # Prevent double running for push & pull_request events from the main repo | ||
| if: github.event_name != 'push' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
|
|
||
| steps: | ||
|
|
||
| - name: Setup .NET Core SDK | ||
| uses: actions/setup-dotnet@v4.0.1 | ||
|
|
||
| - name: Setup Nuget | ||
| uses: nuget/setup-nuget@v2 | ||
|
|
||
| - uses: actions/checkout@v4.1.7 | ||
|
|
||
| - name: Get references | ||
| shell: pwsh | ||
| run: | | ||
| Invoke-WebRequest -Uri ${{ env.EXILED_REFERENCES_URL }} -OutFile ${{ github.workspace }}/EXILED/References.zip | ||
| Expand-Archive -Path References.zip -DestinationPath ${{ env.EXILED_REFERENCES_PATH }} | ||
|
|
||
| - name: Build | ||
| env: | ||
| EXILED_REFERENCES: ${{ env.EXILED_REFERENCES_PATH }} | ||
| shell: pwsh | ||
| run: | | ||
| ./build.ps1 -BuildNuGet | ||
| $File = (Get-ChildItem -Path . -Include 'ExMod.Exiled.*.nupkg' -Recurse).Name | ||
| Out-File -FilePath ${{ github.env }} -InputObject "PackageFile=$File" -Encoding utf-8 -Append | ||
|
|
||
| - name: Upload nuget package | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: ${{ env.PackageFile }} | ||
| path: EXILED/${{ env.PackageFile }} | ||
|
|
||
| - name: Get references | ||
| shell: pwsh | ||
| run: | | ||
| Invoke-WebRequest -Uri ${{ env.EXILED_DLL_ARCHIVER_URL }} -OutFile ${{ github.workspace }}/EXILED/EXILED-DLL-Archiver.exe | ||
|
|
||
| - name: Packaging results as tar.gz | ||
| shell: pwsh | ||
| run: ./packaging.ps1 | ||
|
|
||
| - name: Upload artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: Build Result | ||
| path: EXILED/bin/Release/Exiled.tar.gz | ||
|
|
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.