From 0856a38f57da95e51c074feba0a94a0383529c34 Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Fri, 16 Jan 2026 16:19:20 -0600 Subject: [PATCH] fix not releasing --- .github/workflows/release-docs.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-docs.yml b/.github/workflows/release-docs.yml index ef42c0e..8e2e6aa 100644 --- a/.github/workflows/release-docs.yml +++ b/.github/workflows/release-docs.yml @@ -15,14 +15,15 @@ jobs: with: python-version: '3.13' - name: Install Dependencies - run: pip install -r mkdocs/requirements.txt + run: pip install -r mkdocs/requirements.txt >> /dev/null && echo "Done." - name: Build Docs run: | mkdir $RUNNER_TEMP/dist - mkdocs build -f mkdocs/mkdocs.yml -d $RUNNER_TEMP/${{ github.ref_name }} - zip -r $RUNNER_TEMP/dist/${{ github.ref_name }}.zip $RUNNER_TEMP/${{ github.ref_name }} + mkdocs build -f mkdocs/mkdocs.yml -d $RUNNER_TEMP/dist/${{ github.ref_name }} + cd $RUNNER_TEMP/dist/ + zip -r ${{ github.ref_name }}.zip ./${{ github.ref_name }} >> /dev/null && echo "Zipped to ${{ github.ref_name }}.zip" - name: Release - if: ${{ !env.ACT }} + if: ${{ vars.SKIP_RELEASE != 'true' }} uses: softprops/action-gh-release@v2 with: files: |