File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
actions/deploy-to-proxygen Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 5858 # Debug: Check if ACCESS_TOKEN is set
5959 if [ -z "$ACCESS_TOKEN" ]; then
6060 echo "ERROR: ACCESS_TOKEN is empty after assignment from inputs"
61- echo "Input value length: ${#{{ inputs.access_token }}}"
6261 exit 1
6362 fi
6463 echo "ACCESS_TOKEN is set (length: ${#ACCESS_TOKEN} characters)"
Original file line number Diff line number Diff line change 4444 echo "Environment: ${{ inputs.environment }}"
4545 echo "Workspace: ${{ inputs.workspace }}"
4646 echo "API Name: ${{ inputs.api_name }}"
47+ echo "Proxy Env: ${{ inputs.proxy_env }}"
48+ # Check if access_token input is received (without exposing value)
49+ if [ -z "${{ inputs.access_token }}" ]; then
50+ echo "ERROR: access_token input is EMPTY at workflow level"
51+ exit 1
52+ fi
53+ echo "access_token input received (length: ${{ length(inputs.access_token) }} characters)"
4754
4855 - name : Deploy API Specification
4956 uses : ./.github/actions/deploy-to-proxygen
You can’t perform that action at this time.
0 commit comments