27 lines
779 B
YAML
Raw Normal View History

2024-12-03 13:16:44 +00:00
name: Build Base Application
run-name: Build Base Application
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Update repo
run: git pull
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: Update apt
run: apt update
- name: Installing system dependencies
run: apt install python3 python3-pip python3-venv make -y
- name: Run Make
2024-12-03 13:18:06 +00:00
run: make
2024-12-03 13:16:44 +00:00
- run: git add .
- run: git config --global user.email "bot@molodetz.com"
- run: git config --global user.name "bot"
- run: git commit -a -m "Automated update of Base Application package."
- run: git push