Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/cleanup-ghcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Cleanup untagged Docker images

on:
schedule:
- cron: '0 3 * * 0' # Sunday 03:00 UTC
workflow_dispatch:

jobs:
cleanup:
runs-on: ubuntu-latest
permissions:
packages: write
strategy:
matrix:
package:
- website-2026-backend
- website-2026-frontend
steps:
- name: Delete untagged versions
uses: actions/delete-package-versions@v5
with:
package-name: ${{ matrix.package }}
package-type: container
delete-only-untagged-versions: true
min-versions-to-keep: 5
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.1.1

- FIXED system - HTML and JS frontend caches causing failures
- FIXED system - cleanup old docker images on registry

## 2.1.0

Expand Down
Loading