Deploying to gh-pages from @ oat-sa/tao-community@eca1461a63d719ddc0d… #311
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clean up | |
on: | |
- push | |
jobs: | |
clean-up: | |
concurrency: clean-up-${{ github.ref }} | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'Clean up the gh-pages')" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.ref_name }} | |
- name: Remove stale directories | |
run: comm -23 <(find . -type d -name _css | sed -E "s/\.\/(.*)\/_css/\1/g" | sort) <(git branch -r | sed -E "s/^ *origin\///g" | sort) | xargs rm -rf | |
- name: Commit and push | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: Clean up the gh-pages |