Skip to content

Commit

Permalink
Add manual autoconf action by Geo
Browse files Browse the repository at this point in the history
  • Loading branch information
thommey committed Jul 29, 2024
1 parent 8d5f4a0 commit 2773b82
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/manual_autoconf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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 && apt-get install -y 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 add .
git commit -m "Run autotools"
git push origin develop

0 comments on commit 2773b82

Please sign in to comment.