We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f04d14e commit 1a10330Copy full SHA for 1a10330
1 file changed
.github/workflows/build.yml
@@ -127,12 +127,14 @@ jobs:
127
run: export NODE_OPTIONS=--openssl-legacy-provider;(cd docs && npm ci && npm run docs:build)
128
- name: Add .nojekyll
129
run: (cd public && touch .nojekyll)
130
+ - name: move to subdir
131
+ run: mkdir upload_docs && mv public upload_docs/
132
- name: Upload docs
133
uses: actions/upload-artifact@v4
134
with:
135
name: ipyaggrid-docs-${{ github.run_number }}
136
path: |
- ./public
137
+ ./upload_docs
138
139
release:
140
if: startsWith(github.event.ref, 'refs/tags/v')
0 commit comments