FT2024-1 (#195) #587
Workflow file for this run
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: CI | |
on: | |
push: | |
paths: | |
- '*.csv' | |
jobs: | |
make_xml: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref }} | |
- name: create xml files and push | |
run: | | |
scripts/makeLegacyFormats.sh | |
ls txt | |
ls xml | |
git config --global user.email "efucile@wmo.int" | |
git config --global user.name "Enrico Fucile" | |
git branch | |
git add . | |
git commit -m "xml,txt files" -a | |
git push |