diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 82ce81a..6f9cfef 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,7 +1,13 @@ -steps: -- uses: actions/checkout@v4 -- uses: actions/setup-python@v5 - with: - python-version: '3.12.4' - cache: 'pip' # caching pip dependencies -- run: pip install -r requirements.txt \ No newline at end of file +name: Build Inex Executable +on: [push] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12.4' + cache: 'pip' # caching pip dependencies + - run: pip install -r requirements.txt \ No newline at end of file