change CPM cutoff #130
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: sudo apt-get update && sudo apt-get install -y autoconf automake libtool sed wget r-base | |
- name: Run autoreconf | |
run: | | |
autoreconf -fiv | |
./configure | |
make dist | |
- name: Extract dist files | |
run: | | |
tar -zxvf benj-*.tar.gz | |
cp -r benj-*/* . | |
- name: Push to Main Branch | |
run: | | |
git config --global user.name 'GitHub Action' | |
git config --global user.email 'action@github.com' | |
git add config.guess config.sub configure configure.ac Makefile.in Makefile.am install-sh aclocal.m4 missing DESCRIPTION | |
git commit -m "Auto-update Autotools files" || echo "No changes to commit" | |
git push origin HEAD:main -f |