We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d57d9e commit cbcf081Copy full SHA for cbcf081
.github/workflows/cd.yml
@@ -53,12 +53,6 @@ jobs:
53
python -m pip install --upgrade pip
54
python -m pip install -r requirements.txt
55
56
- - name: Update environment paths
57
- run: |
58
- echo "${{ github.workspace }}/venv/bin" >> $GITHUB_PATH
59
- echo "VIRTUAL_ENV=${{ github.workspace }}/venv" >> $GITHUB_ENV
60
-
61
62
- name: Save virtual environment cache
63
if: steps.cache-venv.outputs.cache-hit != 'true'
64
uses: actions/cache@v3
@@ -68,7 +62,7 @@ jobs:
68
69
70
- name: Create Zipfile archive of Dependencies
71
- run: zip -r9 ${PROJECT_NAME}.zip venv
65
+ run: zip -r9 ${PROJECT_NAME}.zip venv -x "venv/lib/python3.10/site-packages/pip/*"
72
66
73
67
- name: Add App to Zipfile
74
run: |
0 commit comments