We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad1fa7 commit cd27f7dCopy full SHA for cd27f7d
.github/workflows/publish.yml
@@ -112,16 +112,16 @@ jobs:
112
uses: actions/checkout@v4
113
with:
114
ref: gh-pages
115
- path: ../gh-pages
+ path: gh-pages
116
117
- name: Update gh-pages branch
118
run: |
119
# Copy to versions/ subdirectory
120
- mkdir -p ../gh-pages/versions/${{ env.version }}
121
- cp -r _site/* ../gh-pages/versions/${{ env.version }}
+ mkdir -p gh-pages/versions/${{ env.version }}
+ cp -r _site/* gh-pages/versions/${{ env.version }}
122
123
# Find the latest version of the docs and copy that to the root
124
- cd ../gh-pages/versions
+ cd gh-pages/versions
125
LATEST_DOCS=$(ls -d * | sort -V | tail -n 1)
126
cp -r $LATEST_DOCS/* ../
127
0 commit comments