Skip to content

Automated SecureDrop workstation build #309

Automated SecureDrop workstation build

Automated SecureDrop workstation build #309

Workflow file for this run

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