chore: initialize project structure with empty repository and default files

This commit is contained in:
2024-12-03 13:16:44 +00:00
commit 5c8fb9ec57
22 changed files with 605 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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