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 00e0148 commit fd415c7Copy full SHA for fd415c7
.github/workflows/preview-build.yml
@@ -138,13 +138,18 @@ jobs:
138
if: steps.deployment.outputs.result
139
140
- name: Upload to S3
141
+ id: s3-upload
142
143
run: |
144
aws s3 sync .artifacts/docs/html "s3://elastic-docs-v3-website-preview${PATH_PREFIX}" --delete
145
aws cloudfront create-invalidation \
146
--distribution-id EKT7LT5PM8RKS \
147
--paths "${PATH_PREFIX}" "${PATH_PREFIX}/*"
148
149
+ - name: Update Link Index
150
+ if: steps.s3-upload.outcome == 'success'
151
+ uses: elastic/docs-builder/actions/update-link-index@main
152
+
153
- name: Update deployment status
154
uses: actions/github-script@v7
155
if: always() && steps.deployment.outputs.result
0 commit comments