Update euro.txt #20
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: Update euro.json datasets (Read in Football.TXT & Generate JSON) | |
on: | |
push: | |
paths: | |
- '2024--germany/euro.txt' | |
# schedule: | |
# note: * is a special character in YAML so you have to quote this string | |
# see cron guru for more examples / help on syntax | |
# -> https://crontab.guru/examples.html | |
# - cron: '0 22 1,15 * *' # every 1 & 15 of the month at 22:00 (utc?) | |
# note: change to weekly every thursday | |
# - cron: '0 22 * * THU' # every thursday at 22:00 (utc?) | |
workflow_dispatch: | |
### for testing / debugging allow "manual" start | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' # Version range or exact version of a Ruby version to use, using semvers version range syntax. | |
- name: run install / add user | |
env: | |
SSH_KEY: ${{ secrets.SSH_KEY }} | |
run: | | |
bundle install --gemfile=.github/workflows/Gemfile | |
yo -f .github/workflows/Flowfile.rb adduser | |
- name: Run ssh_clone | |
run: yo -f .github/workflows/Flowfile.rb clone | |
- name: gen json | |
run: ruby .github/workflows/genjson.rb | |
- name: Run ssh_push | |
run: yo -f .github/workflows/Flowfile.rb push |