Deploy to S3 #17
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: Deploy to S3 | |
on: | |
push: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["Sync Submodules"] | |
types: [completed] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run Zola | |
uses: shalzz/zola-deploy-action@v0.19.2 | |
env: | |
BUILD_ONLY: true | |
- name: Upload to S3 | |
run: | | |
aws s3 cp --recursive public s3://br-www-docs/docs/${{ github.ref_name }} |