Build stagit web #948
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: Build stagit web | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 */4 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Git | |
uses: actions4git/setup-git@v1 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y make gcc libmd4c* libgit2-dev | |
- name: Build stagit | |
run: | | |
git clone https://github.com/ChausseBenjamin/stagit | |
cd stagit | |
make | |
sudo make install | |
- name: Clone SnapEnhance | |
run: | | |
git clone https://github.com/rhunk/SnapEnhance | |
cd SnapEnhance | |
cd .git | |
echo "An Xposed module offering an enhanced Snapchat experience" > description | |
- name: Generate stagit web | |
run: | | |
find . -type f ! -name 'logo.png' ! -name 'favicon.png' ! -name 'style.css' ! -path './.git/*' ! -path './SnapEnhance/*' ! -path './.github/*' ! -name 'description' ! -name 'owner' ! -name '.gitignore' ! -name 'index.html' -delete | |
stagit ./SnapEnhance | |
- name: Commit changes | |
run: | | |
rm -rf ./stagit | |
rm -rf ./SnapEnhance | |
git add . | |
git commit -m "chore(web): update stagit web" | |
git push |