From fea93e46330a319239d0e1294f583590bd8ff319 Mon Sep 17 00:00:00 2001 From: "marcio.fernandes" Date: Sun, 4 Aug 2024 04:01:25 +0000 Subject: [PATCH] Update .gitea/workflows/deploy.yml --- .gitea/workflows/deploy.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 995b2b8..b6df43c 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -6,11 +6,12 @@ jobs: deploy: runs-on: "homesrv01" steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - name: checkout repo content + uses: actions/checkout@v3 # checkout the repository content to github runner. + - name: setup python + uses: actions/setup-python@v4 with: - python-version: '3.10' - - run: python my_script.py + python-version: 3.8 #install the python needed # with: # python-version: '3.12.4' # Version range or exact version of a Python version to use, using SemVer's version range syntax #architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified