We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a3422 commit fa47048Copy full SHA for fa47048
.github/workflows/try-login.yml
@@ -19,8 +19,8 @@ jobs:
19
service-secret: ${{ secrets.BYTEBASE_SERVICE_SECRET }}
20
- name: Debug API URL
21
run: |
22
- echo "API URL Length: ${#${{ steps.bytebase-login.outputs.api_url }}}"
23
- echo "Token Length: ${#${{ steps.bytebase-login.outputs.token }}}"
+ echo "API URL Length: $(echo -n "${{ steps.bytebase-login.outputs.api_url }}" | wc -c)"
+ echo "Token Length: $(echo -n "${{ steps.bytebase-login.outputs.token }}" | wc -c)"
24
- name: List projects
25
26
curl "${{ steps.bytebase-login.outputs.api_url }}/v1/projects" \
0 commit comments