Skip to content

Add client customizer interface for each supported integration. (#1229) #592

Add client customizer interface for each supported integration. (#1229)

Add client customizer interface for each supported integration. (#1229) #592

Workflow file for this run

name: Build and upload docs
on:
push:
branches:
- main
- 3.1.x
- 3.2.x
- 3.3.x
- 3.0.x
- 2.4.x
- 2.3.x
- 2.2.x
env:
# https://github.com/actions/checkout/issues/440#issuecomment-854240996
AWS_EC2_METADATA_DISABLED: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17.0.12
cache: maven
- name: Build docs
run: ./mvnw clean package javadoc:aggregate -Pdocs-classic,spring -DskipTests=true -e
- name: Upload to S3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.S3_AWS_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_AWS_SECRET_KEY }}
run: |
aws s3 sync --acl public-read docs/target/generated-docs/ s3://awspring-docs/spring-cloud-aws/docs/
aws s3 sync --acl public-read target/site/ s3://awspring-docs/spring-cloud-aws/docs/
aws cloudfront create-invalidation --distribution-id EA7LER7CI960A --paths "/*"