diff --git a/.github/workflows/build_dynamic_embedding_wheels.yml b/.github/workflows/build_dynamic_embedding_wheels.yml index 3c37d2aa07..3a9daefe33 100644 --- a/.github/workflows/build_dynamic_embedding_wheels.yml +++ b/.github/workflows/build_dynamic_embedding_wheels.yml @@ -55,6 +55,7 @@ jobs: shell: bash - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: wheelhouse/*.whl + overwrite: true diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bd5162a4b6..32cfb896ea 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -83,10 +83,11 @@ jobs: conda run -n build_binary make html cd .. - name: Upload Built-Docs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Built-Docs path: docs/build/html/ + overwrite: true - name: Get output time run: echo "The time was ${{ steps.build.outputs.time }}" - name: Deploy @@ -105,10 +106,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Built-Docs path: docs + overwrite: true - name: Add no-index tag run: | find docs -name "*.html" -print0 | xargs -0 sed -i '/
/a \ \ ';