Skip to content

fix(deps): update quarkus.platform.version to v3.17.5 #200

fix(deps): update quarkus.platform.version to v3.17.5

fix(deps): update quarkus.platform.version to v3.17.5 #200

Workflow file for this run

name: PR cleanup
on:
pull_request:
types: [closed]
jobs:
cleanup:
runs-on: 'ubuntu-latest'
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
-
name: Delete go tag on Quay
id: delete_go_tag
env:
PR_NUMBER: '${{ github.event.pull_request.number }}'
QUAYIO_API_TOKEN: '${{ secrets.QUAYIO_API_TOKEN }}'
run: |
curl -X DELETE -H "Authorization: Bearer ${QUAYIO_API_TOKEN}" https://quay.io/api/v1/repository/acend/example-web-go/tag/pr-${PR_NUMBER}
-
name: Delete python tag on Quay
id: delete_python_tag
env:
PR_NUMBER: '${{ github.event.pull_request.number }}'
QUAYIO_API_TOKEN: '${{ secrets.QUAYIO_API_TOKEN }}'
run: |
curl -X DELETE -H "Authorization: Bearer ${QUAYIO_API_TOKEN}" https://quay.io/api/v1/repository/acend/example-web-python/tag/pr-${PR_NUMBER}