From 83808c86a08c86840cc6322e8e580fea83777170 Mon Sep 17 00:00:00 2001 From: Lena Garber Date: Tue, 3 Sep 2024 15:20:33 -0400 Subject: [PATCH] static/docs -> _documentation --- .github/workflows/documentation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index fa7d45330..6e6b374a8 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -90,11 +90,11 @@ jobs: with: fetch-depth: 0 submodules: "recursive" - ref: "static/docs" + ref: "_documentation" - name: Create the documentation branch if it does not already exist if: "${{ steps.checkout-docs.outcome != 'success' }}" - run: git switch --orphan static/docs + run: git switch --orphan _documentation - name: Ensure any previous documentation for this branch is removed run: rm -rf "./${{ github.ref_name }}" @@ -121,7 +121,7 @@ jobs: git config user.email "dl-linode-dev-dx@akamai.com"; git add .; git commit --allow-empty -m "Build ${{ github.ref_name }} from ${{ github.sha }}"; - git push origin static/docs; + git push origin _documentation; upload-release-asset: name: Upload Release Asset