Invalid names for abstractanndata #61
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: Autoreconf Dist | |
on: | |
push: | |
branches: [ dev ] | |
jobs: | |
autoreconf: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Dev Branch | |
uses: actions/checkout@v2 | |
with: | |
ref: 'dev' | |
- name: Set up Autotools | |
run: command -v autoconf || (sudo apt-get update && sudo apt-get install -y autoconf) | |
- name: Run autoreconf | |
run: | | |
autoreconf -fiv | |
- name: Push to Main Branch | |
run: | | |
git config --global user.name 'GitHub Action' | |
git config --global user.email '[email protected]' | |
git add configure | |
git commit -m "Auto-update Autotools files" || echo "No changes to commit" | |
git push origin HEAD:main -f |