👷 Setup python

This commit is contained in:
Nikhil Badyal
2024-04-20 18:11:44 +05:30
parent 7310bd180e
commit 218e0984fc
3 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ jobs:
run: | run: |
echo "${{ secrets.ENVS }}" >> .env echo "${{ secrets.ENVS }}" >> .env
- name: setup python - name: Setup python
uses: actions/setup-python@main uses: actions/setup-python@main
with: with:
python-version: '3.12.3' python-version: '3.12.3'
+6 -1
View File
@@ -45,7 +45,12 @@ jobs:
echo "${{ secrets.ENVS }}" >> .env echo "${{ secrets.ENVS }}" >> .env
echo "GITHUB_REPOSITORY=${{ github.repository }}" >> .env echo "GITHUB_REPOSITORY=${{ github.repository }}" >> .env
- name: Install Dot-Env - name: Setup python
uses: actions/setup-python@main
with:
python-version: '3.12.3'
- name: Install Requirements
if: ${{ inputs.PREFERRED_PATCH_APPS }} if: ${{ inputs.PREFERRED_PATCH_APPS }}
env: env:
PREFERRED_PATCH_APPS: ${{ inputs.PREFERRED_PATCH_APPS }} PREFERRED_PATCH_APPS: ${{ inputs.PREFERRED_PATCH_APPS }}
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
- name: checkout repo content - name: checkout repo content
uses: actions/checkout@main uses: actions/checkout@main
- name: setup python - name: Setup python
uses: actions/setup-python@main uses: actions/setup-python@main
with: with:
python-version: '3.12.3' python-version: '3.12.3'