Crawler #807
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: Crawler | |
on: | |
push: | |
schedule: | |
- cron: '0 15 * * *' | |
workflow_dispatch: | |
jobs: | |
crawl: | |
name: 3GPP documents 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: Install mdbtools | |
run: sudo apt-get install mdbtools | |
- name: Install gem | |
run: | | |
gem install relaton-cli | |
- name: Fetch documents | |
run: | | |
# rm -f data/* | |
relaton fetch-data status-smg-3GPP -f bibxml | |
- name: Push data | |
run: | | |
echo `date` > flag.txt | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add data/* flag.txt current.yaml | |
git diff --quiet && git diff --staged --quiet || (git commit -m 'update documents' && git push) |