Merge pull request #39 from PythonMexico/staging #3
This file contains hidden or 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: Deploy to AWS S3 + CloudFront | |
on: | |
push: | |
branches: [ main ] | |
permissions: | |
contents: read | |
id-token: write # Required for AWS OIDC authentication | |
jobs: | |
commit_lint: | |
name: Validate Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Validate PR Title | |
uses: wagoid/commitlint-github-action@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
configFile: .commitlintrc.json | |
build-and-deploy: | |
needs: commit_lint | |
name: Build and Deploy to AWS | |
runs-on: ubuntu-latest | |
environment: | |
name: aws-prod | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build MkDocs site | |
run: mkdocs build --strict --use-directory-urls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Sync to S3 | |
run: | | |
aws s3 sync site/ s3://${{ secrets.AWS_S3_BUCKET }}/ \ | |
--delete \ | |
--cache-control "public, max-age=3600" \ | |
--exclude "*.html" \ | |
--exclude "sitemap.xml" | |
# Upload HTML files with shorter cache | |
aws s3 sync site/ s3://${{ secrets.AWS_S3_BUCKET }}/ \ | |
--cache-control "public, max-age=600, must-revalidate" \ | |
--content-type "text/html; charset=utf-8" \ | |
--exclude "*" \ | |
--include "*.html" | |
# Upload sitemap with no cache | |
aws s3 sync site/ s3://${{ secrets.AWS_S3_BUCKET }}/ \ | |
--cache-control "public, max-age=0, must-revalidate" \ | |
--exclude "*" \ | |
--include "sitemap.xml" | |
cleanup-staging: | |
name: Stop Staging Site | |
needs: build-and-deploy | |
runs-on: ubuntu-latest | |
environment: | |
name: aws-stag | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Stop Staging Site | |
run: | | |
aws s3 rm s3://${{ secrets.AWS_S3_BUCKET }}/ --recursive |