From 0fa6cd658d510c71cb69de8ff56255318ac56cd6 Mon Sep 17 00:00:00 2001 From: jblu Date: Wed, 17 Jul 2024 02:36:15 -0500 Subject: [PATCH] updated build.yaml --- .gitea/workflows/build.yaml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) 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