Bug fix, remove "," chars in comment section of EmissionsInputs.csv #43
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 main (on push) | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
run: | |
name: Update main | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: main | |
fetch-depth: 0 | |
submodules: true | |
- run: | | |
cd develop | |
git fetch | |
git checkout origin/dev | |
cd .. | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add . | |
git commit -m "Updated develop catalogs on main" | |
git push origin main |