Back to snapshot and update readme (#1270) #602
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "/*" |