1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00
Gogh/.github/workflows/actions.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2023-02-27 02:55:53 +03:00
name: Execute Python Scripts on New Theme-YML Files
on:
push:
paths:
- 'theme-yml/*'
2021-01-23 19:40:50 +03:00
jobs:
2023-02-27 02:55:53 +03:00
build:
runs-on: ubuntu-20.04
2021-01-23 19:40:50 +03:00
steps:
2023-02-27 02:55:53 +03:00
- name: Checkout code
uses: actions/checkout@v2
- name: Update ubuntu
run: |
apt -qq update
echo 🏅
- name: Install python3
run: |
apt install python3 -y > /dev/null 2>&1
echo 🏅
- name: Install pip3
run: |
apt install -y python3-pip > /dev/null 2>&1
echo 🏅
- name: Python3 requirements.txt
run: |
pip3 install -r requirements.txt > /dev/null 2>&1
echo 🏅
- name: Generate json
run: |
python3 tools/generatJson.py
echo 🏅
- name: Generate Installers
run: |
python3 tools/generateShFiles.py
echo 🏅
2021-01-23 19:40:50 +03:00
2023-02-27 02:55:53 +03:00
- name: Git commit
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@github.com
git add .
git commit -m "------- Generate Themes Github Action -------"
git push