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 e66a679 commit d0a3422Copy full SHA for d0a3422
.github/workflows/try-login.yml
@@ -17,8 +17,12 @@ jobs:
17
bytebase-url: ${{ secrets.BYTEBASE_URL }}
18
service-key: ${{ secrets.BYTEBASE_SERVICE_KEY }}
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 }}}"
24
- name: List projects
25
run: |
- curl "${{ steps.bytebase-login.outputs.api_url }}/projects" \
26
+ curl "${{ steps.bytebase-login.outputs.api_url }}/v1/projects" \
27
-H "Authorization: Bearer ${{ steps.bytebase-login.outputs.token }}" \
28
-H 'Content-Type: application/json; charset=utf-8'
0 commit comments