Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

S3 delivery #3

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
21 changes: 21 additions & 0 deletions .github/workflows/push-datasets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: push-datasets
on:
push:
branches:
- main

jobs:
push-dataset:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: Upload datasets to s3
uses: shallwefootball/s3-upload-action@master
id: S3
with:
aws_key_id: ${{secrets.AWS_KEY_ID}}
aws_secret_access_key: ${{secrets.AWS_SECRET_ACCESS_KEY}}
aws_bucket: chemmatdata
source_dir: datasets
destination_dir: datasets
File renamed without changes.
File renamed without changes.