From 40b4e854798a5d83ed38b2752a4b8c364e545f21 Mon Sep 17 00:00:00 2001 From: CanardConfit Date: Fri, 2 Aug 2024 14:15:37 +0200 Subject: [PATCH] Update Workflow --- .github/workflows/build-and-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-release.yaml b/.github/workflows/build-and-release.yaml index 0363319..c58b7df 100644 --- a/.github/workflows/build-and-release.yaml +++ b/.github/workflows/build-and-release.yaml @@ -20,7 +20,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 # In case you need more sub folders add these here - name: Prepare folders @@ -46,8 +46,8 @@ jobs: # Add all necessary files that the plugin needs to the packages folder - basically all items that are normally in your post build event on your local builds - name: Prepare package run: | - Copy-Item "${{ env.PLUGIN_NAME }}/bin/Release/net8.0-windows/${{ env.PLUGIN_DLL_NAME }}.dll" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.dll" -Force - Copy-Item "${{ env.PLUGIN_NAME }}/bin/Release/net8.0-windows/${{ env.PLUGIN_DLL_NAME }}.pdb" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.pdb" -Force + Copy-Item "${{ env.PLUGIN_NAME }}/bin/Release/net8.0-windows8.0/${{ env.PLUGIN_DLL_NAME }}.dll" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.dll" -Force + Copy-Item "${{ env.PLUGIN_NAME }}/bin/Release/net8.0-windows8.0/${{ env.PLUGIN_DLL_NAME }}.pdb" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.pdb" -Force - name: Create Plugin archives and manifests run: |