Remove automatic verify

This commit is contained in:
Claudio Ortolina
2025-08-25 20:28:26 +03:00
parent 0480b9b5cd
commit e1c61ac2ac
-17
View File
@@ -110,20 +110,3 @@ jobs:
- name: Deploy to Coolify - name: Deploy to Coolify
run: | run: |
curl --request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' curl --request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}'
verify:
name: Verify
needs: deploy
runs-on: ubuntu-24.04
environment: production
if: github.ref == 'refs/heads/main'
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- uses: actions/checkout@v4
- uses: gacts/install-hurl@v1
- name: Wait until instance is up
run: hurl --test test/healthcheck.hurl --retry 3 --retry-interval 5000
- name: Run production tests
run: hurl --test test/prod.hurl
env:
HURL_api_token: ${{ secrets.API_TOKEN }}