-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ada51e5
commit 7e4ce37
Showing
3 changed files
with
32 additions
and
3,901 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Autoreconf Mirror Branch | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
autoreconf: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Main Branch | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: 'main' | ||
|
||
- name: Set up Autotools | ||
run: sudo apt-get update && sudo apt-get install -y autoconf automake libtool | ||
|
||
- name: Run autoreconf | ||
run: autoreconf -i | ||
|
||
- name: Push to Mirror Branch | ||
run: | | ||
git config --global user.name 'GitHub Action' | ||
git config --global user.email 'action@github.com' | ||
git add -A | ||
git commit -m "Auto-update Autotools files" || echo "No changes to commit" | ||
git push origin HEAD:main-build -f |
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
Oops, something went wrong.