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 29f9780 commit 91d8b31Copy full SHA for 91d8b31
.github/workflows/testinfra-ami-build.yml
@@ -50,6 +50,15 @@ jobs:
50
- name: Checkout Repo
51
uses: supabase/postgres/.github/actions/shared-checkout@HEAD
52
53
+ - name: Debug AWS role secret
54
+ run: |
55
+ echo "Checking DEV_AWS_ROLE secret availability..."
56
+ if [ -z "${{ secrets.DEV_AWS_ROLE }}" ]; then
57
+ echo "❌ DEV_AWS_ROLE is empty or not available"
58
+ else
59
+ echo "✅ DEV_AWS_ROLE is available"
60
+ fi
61
+
62
- name: Configure AWS credentials
63
uses: aws-actions/configure-aws-credentials@v4
64
with:
0 commit comments