-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (37 loc) · 1 KB
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Download front page PDFs, analyze text, and upload JSON
on:
push:
branches:
- master
schedule:
- cron: '0 16 * * *'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
- uses: actions/cache@v2
id: cached
with:
path: |
vendor/bundle/
pdfs/
key: ${{ runner.os }}-cache
- name: Install bundler and gems, then run the ruby build command
run: |
gem install bundler
bundle config path vendor/bundle
bundle install
bundle exec ruby build.rb
- uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-east-1'
SOURCE_DIR: 'data'