Skip to content

Commit bb8679d

Browse files
authored
ENH: adding list of packages to exclude from cleanup (#36)
1 parent 2b318b6 commit bb8679d

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/remove-wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ jobs:
5151
5252
- name: Query package index for packages
5353
run: |
54+
curl https://raw.githubusercontent.com/scientific-python/upload-nightly-action/main/packages-ignore-from-cleanup.txt --output packages-ignore-from-cleanup.txt
5455
anaconda show "${ANACONDA_USER}" &> >(grep "${ANACONDA_USER}/") | \
5556
awk '{print $1}' | \
56-
sed 's|.*/||g' > package-names.txt
57+
sed 's|.*/||g' | \
58+
grep -vf packages-ignore-from-cleanup.txt > package-names.txt
5759
5860
- name: Remove old uploads to save space
5961
run: |

packages-ignore-from-cleanup.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
openblas-libs

0 commit comments

Comments
 (0)