-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Push DAGs to S3 | ||
|
||
on: | ||
- pull_request | ||
|
||
env: | ||
S3_HOST: https://cellar-c2.services.clever-cloud.com | ||
FOLDER_SOURCE: development/ | ||
S3_BUCKET_DESTINATION: s3://qfdmo-airflow-dags/preprod/ | ||
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }} | ||
|
||
jobs: | ||
backup-production: | ||
name: Copy local folder to Preprod s3 bucket | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install AWS CLI dependencies | ||
run: | | ||
pip install awscli | ||
- name: Backup | ||
run: aws --endpoint-url ${{ env.S3_HOST }} s3 sync --quiet ${{ env.FOLDER_SOURCE }} ${{ env.S3_BUCKET_DESTINATION }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Push DAGs to S3 | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
|
||
env: | ||
S3_HOST: https://cellar-c2.services.clever-cloud.com | ||
FOLDER_SOURCE: development/ | ||
S3_BUCKET_DESTINATION: s3://qfdmo-airflow-dags/production/ | ||
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }} | ||
|
||
jobs: | ||
backup-production: | ||
name: Copy local folder to Production s3 bucket | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install AWS CLI dependencies | ||
run: | | ||
pip install awscli | ||
- name: Backup | ||
run: aws --endpoint-url ${{ env.S3_HOST }} s3 sync --quiet ${{ env.FOLDER_SOURCE }} ${{ env.S3_BUCKET_DESTINATION }} |