Skip to content

Commit

Permalink
Fix cleanup commands
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Jan 9, 2024
1 parent 909be29 commit e17ea52
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/validate-and-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
github_base_url: ${{ inputs.github_base_url }}
- name: Compress large _visited_properties.tsv
run: |
find "${{ inputs.annotated_path }}" -size +10M -name _visited_properties.tsv \
sudo find "${{ inputs.annotated_path }}" -size +10M -name _visited_properties.tsv \
-exec gzip \{\} \;
- name: Add & Commit
if: ${{ !endsWith(github.repository, '/bblock-template') && !inputs.skip-build }}
Expand All @@ -104,7 +104,8 @@ jobs:
message: Building blocks postprocessing
- name: Remove _visited_properties.tsv from pages
run: |
find "${{ inputs.annotated_path }}" -name _visited_properties.tsv -delete
sudo find "${{ inputs.annotated_path }}" -name _visited_properties.tsv -delete
sudo find "${{ inputs.annotated_path }}" -name _visited_properties.tsv.gz -delete
- name: Create GH Pages index
if: ${{ github.event.repository.has_pages && !inputs.skip-pages }}
shell: python
Expand Down

0 comments on commit e17ea52

Please sign in to comment.