Skip to content

Commit 7c4cba8

Browse files
committed
Merge branch 'feat/parser-integration-batch-processing' of github.com:aws-powertools/powertools-lambda-typescript into feat/parser-integration-batch-processing
2 parents ce3fc4f + 8322cdc commit 7c4cba8

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/reusable_publish_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ jobs:
132132
aws s3 cp \
133133
s3://$AWS_DOCS_BUCKET/lambda-typescript/versions.json \
134134
versions_old.json
135-
jq 'del(.[].aliases[] | select(. == "$ALIAS"))' < versions_old.json > versions_proc.json
136-
jq '. as $o | [{"title": "$VERSION", "version": "$VERSION", "aliases": ["$ALIAS"] }] as $n | $n | if .[0].title | test("[a-z]+") or any($o[].title == $n[0].title;.) then [($o | .[] | select(.title == $n[0].title).aliases += $n[0].aliases | . )] else $n + $o end' < versions_proc.json > versions.json
135+
jq 'del(.[].aliases[] | select(. == "${{ env.ALIAS }}"))' < versions_old.json > versions_proc.json
136+
jq '. as $o | [{"title": "${{ env.VERSION }}", "version": "${{ env.VERSION }}", "aliases": ["${{ env.ALIAS }}"] }] as $n | $n | if .[0].title | test("[a-z]+") or any($o[].title == $n[0].title;.) then [($o | .[] | select(.title == $n[0].title).aliases += $n[0].aliases | . )] else $n + $o end' < versions_proc.json > versions.json
137137
aws s3 cp \
138138
versions.json \
139139
s3://$AWS_DOCS_BUCKET/lambda-typescript/versions.json

mkdocs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,14 @@ markdown_extensions:
144144
- pymdownx.tasklist:
145145
custom_checkbox: true
146146

147-
copyright: Copyright &copy; 2025 Amazon Web Services
147+
copyright: |
148+
<div id="awsdocs-legal-zone-copyright">
149+
<a href="https://aws.amazon.com/privacy" target="_blank" rel="nofollow">Privacy</a> |
150+
<a href="https://aws.amazon.com/terms/" target="_blank" rel="nofollow">Site terms</a> |
151+
<span class="copyright">
152+
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.
153+
</span>
154+
</div>
148155
149156
plugins:
150157
- privacy

0 commit comments

Comments
 (0)