We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2169be commit 7f93144Copy full SHA for 7f93144
.github/workflows/api-deploy.yml
@@ -51,7 +51,7 @@ jobs:
51
run: |
52
token=$(aws dsql generate-db-connect-admin-auth-token --hostname $DSQL_ENDPOINT)
53
encoded_token=$(echo "$token" | jq -Rr @uri)
54
- sqlx migrate run --database-url 'postgresql://admin:${encoded_token}@${DSQL_ENDPOINT}/postgres?sslmode=require'
+ sqlx migrate run --database-url "postgresql://admin:${encoded_token}@${DSQL_ENDPOINT}/postgres?sslmode=require"
55
56
- name: Upload to Lambda
57
run: aws lambda update-function-code --function-name kb2-lambda-function-${{ github.ref == 'refs/heads/main' && 'dev' || 'prod' }} --zip-file fileb://target/lambda/api/bootstrap.zip
0 commit comments