From 4ded7f6d31672a34c55abe0bcf960232d78b6c1b Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Fri, 4 Jul 2025 15:54:05 -0500 Subject: [PATCH] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 0db94aa..eab562b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -23,26 +23,32 @@ jobs: dotnet-version: '9.0.x' - name: Restore dependencies - run: dotnet restore FireflyClient.sln + run: dotnet restore Firefly.sln - name: Build run: | chmod +x build-all.sh ./build-all.sh + - name: Verify artifacts + run: | + ls -la artifacts/exe || echo "No exe artifacts found" + ls -la artifacts/native || echo "No native artifacts found" + - name: Upload artifacts + if: ${{ !env.ACT }} uses: actions/upload-artifact@v3 with: name: firefly-artifacts path: | - artifacts/exe/* - artifacts/native/* + artifacts/exe + artifacts/native - name: Create Release if: startsWith(github.ref, 'refs/tags/v') uses: softprops/action-gh-release@v1 with: files: | - artifacts/exe/* - artifacts/native/* - generate_release_notes: true \ No newline at end of file + artifacts/exe/** + artifacts/native/** + generate_release_notes: true \ No newline at end of file