Skip to content

Add welcome video static HTML #5

Add welcome video static HTML

Add welcome video static HTML #5

Workflow file for this run

name: Deploy Static Assets
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
name: Deploy to Production
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Sync content/ directory to S3
uses: jakejarvis/s3-sync-action@v0.5.1
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: pydis-static-assets
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
AWS_REGION: eu-central-1
AWS_S3_ENDPOINT: https://eu-central-1.linodeobjects.com
SOURCE_DIR: content