variable interpolation

This commit is contained in:
Lewis Dale 2024-10-19 16:00:40 +01:00
parent 9c057d4a01
commit bd8c3eed3e

View File

@ -7,5 +7,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Trigger deploy
run: curl -X GET ${{ secrets.DEPLOY_ENDPOINT }} -H "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}"
run: curl -X GET ${DEPLOY_ENDPOINT} -H "Authorization: Bearer ${COOLIFY_TOKEN}"
shell: bash
env:
DEPLOY_ENDPOINT: ${{ secrets.DEPLOY_ENDPOINT }}
COOLIFY_TOKEN: ${{ secrets.COOLIFY_TOKEN }}