Deployment to github pages fails due to Space issue getting error System.IO.IOException: No space left on device #141656
Replies: 1 comment
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Bug
Body
I am deploying a static site (selenium allure based reports) from gh-pages branch, over the time size of the branch might have increased very large due to historical data and now it is ~15GB space . I am getting this error in automatic deployment .
Error : System.IO.IOException: No space left on device : '/home/runner/runners/2.320.0/_diag/Worker_20241016-045229-utc.log' at System.IO.RandomAccess.WriteAtOffset
FYI : My workflow which is in another repository is doing the deploying on other remote repo via gh-pages branch.
I am not able to understand few things here -
`name: Smoke
run-name: smoke
on:
workflow_dispatch:
schedule:
- cron: '30 3,15 * * *'
push:
branches:
permissions: write-all
jobs:
Job_Generate_Allure_Reorts:
if: ${{ !cancelled() }}
needs: [job_smoke_run]
runs-on: ubuntu-latest-4-cores
name: Publish Allure Results
steps:
- name: Checkout gh-pages to Get Allure history
uses: actions/checkout@v4
if: ${{ !cancelled() }}
continue-on-error: true
with:
repository:
token:
ref: gh-pages
path: gh-pages
- name : Step - download allure test reports
uses: actions/download-artifact@v4
if: ${{ !cancelled() }}
with:
name:
path:
- name: Deploy report to remote repo in Github Pages
if: ${{ !cancelled() }}
uses: peaceiris/actions-gh-pages@v4
with:
publish_dir: allure-history
external_repository:
publish_branch: gh-pages
personal_token: `
Beta Was this translation helpful? Give feedback.
All reactions