Skip to content

Fetcher

Fetcher #1073

Workflow file for this run

name: Fetcher
on:
push:
schedule:
- cron: '1 15 * * *'
workflow_dispatch:
jobs:
crawl:
name: NIST fetching
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.0
- name: Update gems
run: |
gem install relaton-cli
- name: Fetch documents
run: |
rm -rf data
relaton fetch-data nist-tech-pubs -f bibxml
- name: Push data
run: |
echo `date` > flag.txt
git config user.name github-actions
git config user.email github-actions@github.com
git add data flag.txt
git diff --quiet && git diff --staged --quiet || (git commit -m 'update documents' && git push)