Skip to content

fix: text format in URL #33

fix: text format in URL

fix: text format in URL #33

Workflow file for this run

name: Deploy to AWS S3
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install MkDocs Material
run: pip install mkdocs-material
- name: Build documentation
run: mkdocs build
- name: Set up AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Deploy to S3
run: |
aws s3 sync ./site/ s3://v2-staging-docs/ --delete