Add quay deployment step
Deploy / Build and Deploy (push) Successful in 28s

This commit is contained in:
2026-05-07 16:10:26 +02:00
parent da303c082a
commit 9939d098e7
+10
View File
@@ -57,3 +57,13 @@ jobs:
# Force-push to pages branch # Force-push to pages branch
git push --force "https://${ACTOR}:${GITEA_TOKEN}@${GITEA_SERVER#https://}/${REPO}.git" pages git push --force "https://${ACTOR}:${GITEA_TOKEN}@${GITEA_SERVER#https://}/${REPO}.git" pages
- name: Quay deployment
if: success()
env:
QUAY_TOKEN: ${{ secrets.QUAY_DEPLOY_TOKEN }}
QUAY_SITE_ID: ${{ secrets.QUAY_SITE_ID }}
run: |
curl -X POST \
"https://quay.jan.run/api/v1/deploy?site=${QUAY_SITE_ID}" \
-H "Authorization: Bearer ${QUAY_TOKEN}"