Run and Commit autotools #5
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: Run and Commit autotools | |
on: | |
workflow_dispatch: | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install pre-requisites | |
run: sudo apt-get update && sudo apt-get install build-essential autoconf | |
- name: Run autotools | |
run: bash ./misc/runautotools | |
- name: Commit changes | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "[email protected]" | |
git commit -a -m "Run autotools" | |
git push origin develop | |