We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c76d09c commit 3b36334Copy full SHA for 3b36334
1 file changed
.github/workflows/release.yml
@@ -146,6 +146,7 @@ jobs:
146
147
publish-python-sdk-no-telemetry:
148
runs-on: ubuntu-latest
149
+ needs: get-version
150
env:
151
TWINE_USERNAME: __token__
152
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
@@ -157,6 +158,8 @@ jobs:
157
158
- name: Install dependencies
159
run: make install-python-ci-dependencies PYTHON=3.7
160
- name: Publish Python Package
161
+ env:
162
+ SETUPTOOLS_SCM_PRETEND_VERSION: ${{ needs.get-version.outputs.version_without_prefix }}
163
run: |
164
cd sdk/python
165
sed -i 's/DEFAULT_FEAST_USAGE_VALUE = "True"/DEFAULT_FEAST_USAGE_VALUE = "False"/g' feast/constants.py
0 commit comments