diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 9d4b2a0..4c9c171 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -7,6 +7,9 @@ inputs: qlfile-template: description: "Djula template for qlfile. All environment variables are available in it's context" required: false + ngrok-auth-token: + description: "A token to debug processes." + required: false runs: using: composite @@ -46,3 +49,4 @@ runs: echo ::endgroup:: env: GITHUB_TOKEN: ${{ github.token }} + NGROK_AUTH_TOKEN: ${{ inputs.ngrok-auth-token }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 65646d6..5c8eed3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,7 @@ jobs: - uses: 40ants/cl-info/.github/actions/build-docs@custom-action with: asdf-system: cl-info - NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} + ngrok-auth-token: ${{ secrets.NGROK_AUTH_TOKEN }} # - name: Start SSH session # uses: luchihoratiu/debug-via-ssh@main # with: