[go: up one dir, main page]

Skip to content

Merge pull request #9 from noClaps/add-release-action #1

Merge pull request #9 from noClaps/add-release-action

Merge pull request #9 from noClaps/add-release-action #1

Workflow file for this run

name: Verify Custom Domain on Render
on:
push:
branches: [ main ]
jobs:
verify-domain:
runs-on: ubuntu-latest
if: ${{ secrets.RENDER_API_TOKEN != '' && secrets.RENDER_SERVICE_ID != '' }}

Check failure on line 10 in .github/workflows/verify-dns.yml

View workflow run for this annotation

GitHub Actions / Verify Custom Domain on Render

Invalid workflow file

The workflow is not valid. .github/workflows/verify-dns.yml (Line: 10, Col: 9): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.RENDER_API_TOKEN != '' && secrets.RENDER_SERVICE_ID != ''
steps:
- name: Verify DNS for Custom Domain on Render
run: |
curl -X POST "https://api.render.com/v1/services/${{ secrets.RENDER_SERVICE_ID }}/custom-domains/${{ secrets.DOMAIN }}/verify" \
-H "Authorization: Bearer ${{ secrets.RENDER_API_KEY }}" \
-H "Content-Type: application/json"