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 ab9e5af commit 6fe971cCopy full SHA for 6fe971c
.github/workflows/ci-cd.yml
@@ -74,6 +74,10 @@ jobs:
74
uses: actions/setup-python@v4
75
with:
76
python-version: "3.10"
77
+ - name: Install dependencies
78
+ run: |
79
+ pip install -r requirements.txt
80
+ pip install build wheel
81
- name: Check if properly tagged
82
run: |
83
PACKAGE_VERSION="$(python -c 'from tinify import __version__;print(__version__)')";
@@ -84,10 +88,6 @@ jobs:
84
88
>&2 echo "Skipping deploy"
85
89
exit 1;
86
90
fi
87
- - name: Install dependencies
- run: |
- pip install -r requirements.txt
- pip install build wheel
91
- name: Build package (sdist & wheel)
92
93
python -m build --sdist --wheel --outdir dist/
0 commit comments