Mirror repo to S3 #1086
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: Mirror repo to S3 | |
on: | |
schedule: | |
# Runs everyday at 4:10 am | |
- cron: '10 4 * * *' | |
workflow_dispatch: | |
jobs: | |
s3Backup: | |
runs-on: arc-runner | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Get info | |
id: get_info | |
run: | | |
GIT_COMMIT_DATE="$((`git log -n 1 --date-order --all | grep Date | awk '{ print $4 }'`))" | |
YESTERDAY_DATE="$((`date | awk '{ print $3 }'`-1))" | |
echo ::set-output name=GIT_COMMIT_DATE::${GIT_COMMIT_DATE} | |
echo ::set-output name=YESTERDAY_DATE::${YESTERDAY_DATE} | |
echo $GIT_COMMIT_DATE | |
echo $YESTERDAY_DATE | |
- name: Create backup | |
if: steps.get_info.outputs.GIT_COMMIT_DATE == steps.get_info.outputs.YESTERDAY_DATE | |
run: | | |
sudo apt update && sudo apt install python3-pip -y | |
sudo pip3 install github-backup | |
sudo github-backup -O 0chain -P -t ${{ secrets.SVC_ACCOUNT_SECRET }} --output-directory=/github-backup/system_test --all -O -R system_test | |
- name: Install AWS | |
run: | | |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
unzip awscliv2.zip | |
sudo ./aws/install | |
- name: Create zip | |
if: steps.get_info.outputs.GIT_COMMIT_DATE == steps.get_info.outputs.YESTERDAY_DATE | |
run: sudo zip -r system_test.zip /github-backup/system_test | |
- name: Set AWS credentials | |
if: steps.get_info.outputs.GIT_COMMIT_DATE == steps.get_info.outputs.YESTERDAY_DATE | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.BACKUP_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.BACKUP_SECRET_KEY_ID }} | |
aws-region: us-east-2 | |
- name: Backup to s3 | |
if: steps.get_info.outputs.GIT_COMMIT_DATE == steps.get_info.outputs.YESTERDAY_DATE | |
run: | | |
aws s3 cp system_test.zip s3://${{ secrets.MIRROR_TARGET }}/system_test.zip |