Files
app/.gitea/workflows/build.yaml
T
retoor 6f1d1262e9
Build Base Application / Build (push) Successful in 1m23s
Updated build.
2024-12-03 14:18:06 +01:00

27 lines
779 B
YAML

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
run: make
- 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