Update .gitea/workflows/deploy.yml
Some checks failed
deploy / deploy (push) Failing after 41s

This commit is contained in:
2024-08-04 04:01:25 +00:00
parent 78b78c6c21
commit fea93e4633

View File

@@ -6,11 +6,12 @@ jobs:
deploy: deploy:
runs-on: "homesrv01" runs-on: "homesrv01"
steps: steps:
- uses: actions/checkout@v4 - name: checkout repo content
- uses: actions/setup-python@v5 uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v4
with: with:
python-version: '3.10' python-version: 3.8 #install the python needed
- run: python my_script.py
# with: # with:
# python-version: '3.12.4' # Version range or exact version of a Python version to use, using SemVer's version range syntax # 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 #architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified