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 9ee4e85 commit 50ba277Copy full SHA for 50ba277
.github/workflows/build.yml
@@ -98,3 +98,23 @@ jobs:
98
set: |
99
*.cache-from=type=gha,scope=releaser
100
*.cache-to=type=gha,scope=releaser,mode=max
101
+
102
+ check-cloudfront-config:
103
+ if: ${{ github.event_name == 'pull_request' }}
104
+ runs-on: ubuntu-24.04
105
+ needs:
106
+ - build-releaser
107
+ env:
108
+ DRY_RUN: true
109
+ AWS_REGION: us-east-1
110
+ AWS_CLOUDFRONT_ID: 0123456789ABCD
111
+ AWS_LAMBDA_FUNCTION: DockerDocsRedirectFunction-dummy
112
+ steps:
113
+ -
114
+ name: Checkout
115
+ uses: actions/checkout@v4
116
117
+ name: Check Cloudfront config
118
+ uses: docker/bake-action@v5
119
+ with:
120
+ targets: aws-cloudfront-update
0 commit comments