From a3c0724107ec2c25d273918beec301bd77d3d693 Mon Sep 17 00:00:00 2001 From: LukeFZ <17146677+LukeFZ@users.noreply.github.com> Date: Fri, 1 Dec 2023 10:36:16 +0100 Subject: [PATCH] Add plugins folder into workflow --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a838b43..9dc498b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,16 @@ jobs: - name: Build CLI run: msbuild /t:Il2CppInspector_CLI:publish /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFramework=net8.0 /p:SelfContained=false /verbosity:minimal + - name: Add Plugins folder (GUI) + shell: pwsh + working-directory: Il2CppInspector.GUI/bin/Release/net8.0-windows/win-x64/publish + run: ../../../../../../get-plugins.ps1 + + - name: Add Plugins folder (CLI) + shell: pwsh + working-directory: Il2CppInspector.CLI/bin/Release/net8.0/win-x64/publish + run: ../../../../../../get-plugins.ps1 + - name: Upload GUI Artifact uses: actions/upload-artifact@v3 with: