Skip to content

Commit

Permalink
Revert "[GHA] Use upload-artifact with tag in Build Doc" (#28359)
Browse files Browse the repository at this point in the history
Reverts #28354

Original PR is not needed anymore. The culprit was
`cache-apt-pkgs-action`, it used `upload-artifact@v3` action which
caused the original workflow failure, but now it's fixed
awalsh128/cache-apt-pkgs-action#140 and
`upload-artifact@v3` will be working till January 30
(https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/)
  • Loading branch information
ababushk authored Jan 20, 2025
1 parent 5ce87bf commit 73d6a36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ jobs:
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_ENV
- name: 'Upload sphinx.log'
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: sphinx_build_log_${{ env.PR_NUMBER }}.log
path: build/docs/sphinx.log

- name: 'Upload docs html'
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: openvino_docs_html_${{ env.PR_NUMBER }}.zip
path: build/docs/openvino_docs_html.zip
Expand All @@ -101,7 +101,7 @@ jobs:
- name: 'Upload test results'
if: failure()
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: openvino_docs_pytest
path: build/docs/_artifacts/

0 comments on commit 73d6a36

Please sign in to comment.