backup #2280
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: backup | |
on: | |
schedule: | |
- cron: '0 */4 * * *' | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
backup: | |
name: Backup production DB | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::315513665747:role/aiarena-DeployRole-NUZWXPWHC0MZ | |
aws-region: eu-central-1 | |
- name: Confirm AWS identity | |
run: aws sts get-caller-identity | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install python dependencies | |
if: steps.cache-venv.outputs.cache-hit != 'true' | |
run: pip install -r requirements.LOCAL.txt | |
- name: Perform production DB backup | |
run: ./run.py production-backup | |