Browse Source

feat: cleanup old GitHub packages

This commit a the code to include a new step called "package-cleanup" in the docker-publish workflow. The step is responsible for deleting old package versions of the "steamcmd" container, keeping only one version. This helps maintain a clean and organized repository by removing unnecessary package versions.
pull/30/head
Daniel Gibbs 2 years ago
parent
commit
60ee27f402
  1. 13
      .github/workflows/docker-publish.yml

13
.github/workflows/docker-publish.yml

@ -133,3 +133,16 @@ jobs:
tags: |
gameservermanagers/steamcmd:ubuntu-18.04
ghcr.io/gameservermanagers/steamcmd:ubuntu-18.04
package-cleanup:
name: Cleanup Old GitHub Packages
needs: [ build-ubuntu-1804, build-ubuntu-2004, build-ubuntu-2204 ]
runs-on: ubuntu-latest
steps:
- name: Delete Package Versions
uses: actions/delete-package-versions@v4
with:
package-name: steamcmd
package-type: container
min-versions-to-keep: 1
delete-only-untagged-versions: true

Loading…
Cancel
Save