From bd8c3eed3e7b465cbaf4e233fe1cc691948055b2 Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Sat, 19 Oct 2024 16:00:40 +0100 Subject: [PATCH] variable interpolation --- .gitea/workflows/trigger-deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/trigger-deploy.yml b/.gitea/workflows/trigger-deploy.yml index cb186d4..e8f97ce 100644 --- a/.gitea/workflows/trigger-deploy.yml +++ b/.gitea/workflows/trigger-deploy.yml @@ -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 }}" - shell: bash \ No newline at end of file + run: curl -X GET ${DEPLOY_ENDPOINT} -H "Authorization: Bearer ${COOLIFY_TOKEN}" + shell: bash + env: + DEPLOY_ENDPOINT: ${{ secrets.DEPLOY_ENDPOINT }} + COOLIFY_TOKEN: ${{ secrets.COOLIFY_TOKEN }} \ No newline at end of file