From 93ebdabf6fb9ae3c6d4795a43d462a8f82c89d8b Mon Sep 17 00:00:00 2001 From: C4illin Date: Thu, 30 May 2024 14:15:31 +0200 Subject: [PATCH] chore: :fire: remove old master tag from containers --- .github/workflows/remove-docker-tag.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/remove-docker-tag.yml diff --git a/.github/workflows/remove-docker-tag.yml b/.github/workflows/remove-docker-tag.yml new file mode 100644 index 0000000..5113636 --- /dev/null +++ b/.github/workflows/remove-docker-tag.yml @@ -0,0 +1,21 @@ +name: Remove Docker Tag + +on: + workflow_dispatch: + +jobs: + remove-docker-tag: + runs-on: ubuntu-latest + + # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job. + # (required) + permissions: + contents: read + packages: write + + steps: + - name: Remove Docker Tag + uses: rafalkk/remove-dockertag-action@v1 + with: + tag-name: master + github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file