From 6faab5aa19953aac262033b3e29d113300ddc358 Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Fri, 16 Jan 2026 16:02:54 -0600 Subject: [PATCH] fix 2 --- .github/workflows/release-docs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-docs.yml b/.github/workflows/release-docs.yml index af20ba0..ef42c0e 100644 --- a/.github/workflows/release-docs.yml +++ b/.github/workflows/release-docs.yml @@ -18,11 +18,12 @@ jobs: run: pip install -r mkdocs/requirements.txt - name: Build Docs run: | + mkdir $RUNNER_TEMP/dist mkdocs build -f mkdocs/mkdocs.yml -d $RUNNER_TEMP/${{ github.ref_name }} - zip -r dist/${{ github.ref_name }}.zip $RUNNER_TEMP/${{ github.ref_name }} + zip -r $RUNNER_TEMP/dist/${{ github.ref_name }}.zip $RUNNER_TEMP/${{ github.ref_name }} - name: Release if: ${{ !env.ACT }} uses: softprops/action-gh-release@v2 with: files: | - dist/*.zip \ No newline at end of file + $RUNNER_TEMP/dist/*.zip \ No newline at end of file