Yikun commented on code in PR #42028:
URL: https://github.com/apache/spark/pull/42028#discussion_r1264784797
##########
.github/workflows/build_and_test.yml:
##########
@@ -686,6 +686,14 @@ jobs:
fi
cd docs
bundle exec jekyll build
+ cd ..
+ - name: Tar documentation
+ run: tar cjf site.tar.bz2 docs/_site
+ - name: Upload documentation
+ uses: actions/upload-artifact@v3
+ with:
+ name: site
Review Comment:
```
retention-days: 1
```
As I mentioned before, I recommand to set `retention-period` to `1` to avoid
potential artifact storage quota limited.
Background: I encounetered the issue like `Cannot upload artifacts. You may
have exceeded your spending limit for storing artifacts with Actions or
Packages.` [2], but there still no expilict description in github official doc
to show the real limited quota [3].
[1] https://github.com/actions/upload-artifact#retention-period
[2] https://github.com/actions/upload-artifact/issues/307
[3]
https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#about-workflow-artifacts
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]