Update Deploy_Traefik_and_MariaDB.yml

This commit is contained in:
fal7w 2023-11-25 20:13:07 +03:00 committed by GitHub
parent 946afcd4d7
commit 4ebfd1cb57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,24 @@ jobs:
- label-1 - label-1
steps: steps:
- name: checkout Script content
uses: actions/checkout@v2 # checkout the repository content
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed
- name: install dependicese
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install PyGithub
- name: fintechsys/docker_compose.py # run main.py
# env:
# SOME_SECRET: ${{ secrets.SOME_SECRET }}
run: python fintechsys/docker_compose.py
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4