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 425234b commit 247965aCopy full SHA for 247965a
.github/workflows/sdk_generation.yaml
@@ -31,6 +31,14 @@ jobs:
31
private-key: ${{ secrets.GH_CI_BOT_APP_PRIVATE_KEY }}
32
owner: apideck-libraries
33
34
+ - name: Verify token was created
35
+ run: |
36
+ if [ -z "${{ steps.app-token.outputs.token }}" ]; then
37
+ echo "::error::GitHub App token was not created"
38
+ exit 1
39
+ fi
40
+ echo "Token created successfully"
41
+
42
generate:
43
needs: generate-token
44
uses: speakeasy-api/sdk-generation-action/.github/workflows/workflow-executor.yaml@v15
0 commit comments