Skip to content

Merge pull request #11 from stats4sd/add_odk_form #9

Merge pull request #11 from stats4sd/add_odk_form

Merge pull request #11 from stats4sd/add_odk_form #9

Workflow file for this run

on:
push:
paths:
- 'odk/TAPE - WIP.xlsx'
jobs:
excel_to_csv_files:
runs-on: ubuntu-latest
name: Split Excel file into multiple CSV files
steps:
- name: checkout
uses: actions/checkout@v3
- name: Split Step
id: excel_to_csv
uses: dave-mills/[email protected]
with:
excel_path: 'odk/TAPE - WIP.xlsx'
- name: Commit and push changes
run: |
git config --global user.name "Auto Commit Bot"
git config --global user.email "[email protected]"
git add -A
git commit -m "update csv files based on changes to Excel"
git push