support: suggestions on clean up the actions_github_pages_UNIX created folder? #697
Open
3 tasks done
Labels
support
User support
Checklist
Describe your question
I'm using self-hosted workers, and the actions_github_pages folders pile up fast. Any suggestion for cleaning up? Is the folder name output of the action?
Relevant links
name: Update Docs on: workflow_dispatch: push: branches: - 'main' schedule: - cron: '0 9 * * *' jobs: Update-Docs: runs-on: bionic steps: - uses: actions/checkout@v1 with: submodules: "recursive" fetch-depth: 0 - uses: actions/setup-python@v2 with: python-version: "3.x" - run: pip install -r requirements.txt - name: Update MkDocs run: mkdocs build - name: Push to github pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./site clean-working-directory: runs-on: bionic needs: Update-Docs steps: - name: Clean working directory run: | cd $RUNNER_WORKSPACE cd .. rm -r *
Relevant log output
No response
Additional context.
No response
The text was updated successfully, but these errors were encountered: