From bb4a93a364602f6eb14fda8bc548c224b0a41d8a Mon Sep 17 00:00:00 2001 From: netkas Date: Sun, 13 Oct 2024 14:32:41 -0400 Subject: [PATCH] Updated Build System --- .github/workflows/ncc_workflow.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ncc_workflow.yml b/.github/workflows/ncc_workflow.yml index 857b7f3..eb47ebe 100644 --- a/.github/workflows/ncc_workflow.yml +++ b/.github/workflows/ncc_workflow.yml @@ -551,14 +551,19 @@ jobs: name: documentation path: documentation - - name: Upload documentation artifact to release + - name: zip documentation + run: | + zip -r documentation.zip documentation + + - name: Upload documentation artifact uses: softprops/action-gh-release@v1 with: files: | - documentation/* + documentation.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + release-artifacts: needs: [release, debug, release-compressed, debug-compressed, release-executable, debug-executable, release-compressed-executable, debug-compressed-executable] permissions: write-all