Fixed workflow

This commit is contained in:
naielv
2025-06-27 23:47:53 +02:00
parent 709658be9d
commit cbf9c1a93d

View File

@@ -0,0 +1,25 @@
name: Build server
on:
push:
branches: ["main"]
jobs:
ProjectTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: "Build app"
run: "python3 build.py"
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
# Upload built files
name: 'TeleSec-dist'
path: './dist'