2023-01-16 04:09:55 -05:00
|
|
|
name: Purge old images from main branch
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
2023-01-16 10:05:59 -05:00
|
|
|
- cron: "0 0/3 * * *"
|
2023-01-16 08:48:42 -05:00
|
|
|
- cron: "0 1/3 * * *"
|
|
|
|
- cron: "0 2/3 * * *"
|
2023-01-16 04:09:55 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
find-version:
|
|
|
|
name: Delete version from main ref
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
outputs:
|
|
|
|
version: ${{ steps.find.outputs.version }}
|
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: read
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-04-03 10:36:43 -04:00
|
|
|
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
|
2023-01-16 04:09:55 -05:00
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
|
|
|
|
|
|
|
- name: Login to AWS
|
2023-03-21 05:56:30 -04:00
|
|
|
uses: aws-actions/configure-aws-credentials@e1e17a757e536f70e52b5a12b2e8d1d1c60e04ef # v2.0.0
|
2023-01-16 04:09:55 -05:00
|
|
|
with:
|
|
|
|
role-to-assume: arn:aws:iam::795746500882:role/GithubConstellationVersionsAPIRead
|
|
|
|
aws-region: eu-central-1
|
|
|
|
|
2023-01-16 08:48:42 -05:00
|
|
|
- name: Determine stream
|
|
|
|
id: stream
|
|
|
|
run: |
|
|
|
|
case "${{ github.event.schedule }}" in
|
|
|
|
"0 0/3 * * *")
|
|
|
|
echo "stream=debug" >> "$GITHUB_OUTPUT"
|
|
|
|
;;
|
|
|
|
"0 1/3 * * *")
|
|
|
|
echo "stream=console" >> "$GITHUB_OUTPUT"
|
|
|
|
;;
|
|
|
|
"0 2/3 * * *")
|
|
|
|
echo "stream=nightly" >> "$GITHUB_OUTPUT"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unknown schedule: ${{ github.event.schedule }}"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2023-01-16 04:09:55 -05:00
|
|
|
- name: List versions
|
|
|
|
id: list
|
|
|
|
uses: ./.github/actions/versionsapi
|
|
|
|
with:
|
|
|
|
command: list
|
|
|
|
ref: main
|
2023-01-16 08:48:42 -05:00
|
|
|
stream: ${{ steps.stream.outputs.stream }}
|
2023-01-16 04:09:55 -05:00
|
|
|
|
|
|
|
- name: Find version to delete
|
|
|
|
id: find
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
versions=$(cat versionsapi_output.txt)
|
|
|
|
echo "Found versions:"
|
|
|
|
echo "${versions}"
|
|
|
|
|
|
|
|
echo "Newest 10 versions shouldn't be deleted"
|
|
|
|
deletable=$(echo "${versions}" | head -n -10)
|
2023-03-16 12:07:06 -04:00
|
|
|
if [[ -z "${deletable}" ]]; then
|
2023-01-16 04:09:55 -05:00
|
|
|
echo "No deletable versions found"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
echo "Found deletable versions:"
|
|
|
|
echo "${deletable}"
|
|
|
|
|
|
|
|
ver=$(echo "${deletable}" | head -n 1)
|
|
|
|
echo "Deleting oldest version: ${ver}"
|
|
|
|
echo "version=${ver}" >> "$GITHUB_OUTPUT"
|
|
|
|
|
|
|
|
delete:
|
|
|
|
name: Delete version
|
|
|
|
if: needs.find-version.outputs.version != ''
|
2023-01-31 08:30:36 -05:00
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: read
|
2023-01-16 04:09:55 -05:00
|
|
|
uses: ./.github/workflows/versionsapi.yml
|
|
|
|
needs: find-version
|
|
|
|
secrets: inherit
|
|
|
|
with:
|
|
|
|
command: remove
|
|
|
|
version_path: ${{ needs.find-version.outputs.version }}
|