-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (31 loc) · 1.07 KB
/
cleanup.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Remove old packages
on:
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
clean-old-packages:
runs-on: ubuntu-latest
container: fedora:39
steps:
- name: Install dependencies
run: |
dnf install -y rpmdevtools git git-lfs
- uses: actions/checkout@v4
with:
lfs: true
token: ${{ secrets.PUSH_TOKEN }}
- name: Clean old packages
run: |
git config --global --add safe.directory '*'
git config user.email "securedrop@freedom.press"
git config user.name "sdcibot"
# Preserve up to 4 packages for both nightlies and non-nightlies
find workstation -mindepth 1 -maxdepth 2 -type d | xargs -I '{}' ./scripts/clean-old-packages '{}' 4
git add .
# Index will be clean if there are no changes
git diff-index --quiet HEAD || git commit -m "Removing old packages"
git push origin main