Skip to content

Sparse-Technology/action-cleanup

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cleanup Workspace - Github Action

Simply removes all files from the root directory.

This is useful to clean residue in workspaces from previous self-hosted builds which can have a mix of root owned files that are not able to be removed by the user running the action.

It seems the checkout action is run as the host user, but files created by other actions is run by root. The subsequent checkout is unable to remove the files created from the previous run. Action Runners does not automatically clean up.

This action can also be used in the end of workflow to clear all files and free up diskspace in self-hosted runner.

Usage

name: Build with Cleanup

on:
  push:
    branches-ignore:
      - master
jobs:
  build:
    runs-on: self-hosted
    steps:
      - uses: rtCamp/action-cleanup@master
      - uses: actions/checkout@v2
      - run: echo Hello World

About

Removes all files in the work directory.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 54.5%
  • Dockerfile 45.5%