Skip to content

Commit

Permalink
cd auto
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgedavyd committed Jun 12, 2024
1 parent ba75180 commit e7db83a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Cache pip
uses: actions/cache@v2
with:
Expand All @@ -30,7 +32,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel setuptools
pip install wheel setuptools pipreqs pip-tools
chmod +x requirements.sh
./requirements.sh
pip install -r requirements.txt
- name: Extract tag name
id: extract_tag
Expand Down

0 comments on commit e7db83a

Please sign in to comment.