diff --git a/.github/workflows/cleanup_untagged_containers.yml b/.github/workflows/cleanup_untagged_containers.yml new file mode 100644 index 000000000..968f11687 --- /dev/null +++ b/.github/workflows/cleanup_untagged_containers.yml @@ -0,0 +1,22 @@ +name: Cleanup untagged containers + +on: + schedule: + - cron: '0 2 * * *' + workflow_dispatch: + +jobs: + delete_untagged_containers: + name: Delete untagged containers + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + package_name: ["tue-env-ros-noetic", "tue-env-ros-galactic", "tue-env-ros-humble"] + steps: + - uses: actions/delete-package-versions@v4 + with: + package-name: ${{ matrix.package_name }} + package-type: container + delete-only-untagged-versions: true + min-versions-to-keep: 0 diff --git a/VERSION b/VERSION index 0eed1a29e..f8f4f03b3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12.0 +1.12.1