From e8c20fb39d2a04f8f846e5a593551b48c5478a9e Mon Sep 17 00:00:00 2001 From: snake-4 <18491360+snake-4@users.noreply.github.com> Date: Sun, 23 Feb 2025 01:11:32 +0100 Subject: [PATCH] Fixed CI workflow --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b12284f..017757d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,16 +35,16 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ steps.prepareArtifact.outputs.releaseName }} - path: "module/build/out/release" + path: "module/build/outputs/zip/release" - name: Upload Debug Artifact uses: actions/upload-artifact@v4 with: name: ${{ steps.prepareArtifact.outputs.debugName }} - path: "module/build/out/debug" + path: "module/build/outputs/zip/debug" - name: Create a release if: startsWith(github.ref, 'refs/tags/v') uses: softprops/action-gh-release@v2 with: - files: module/build/out/*.zip + files: module/build/outputs/zip/*.zip