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 217204b commit 6b382ddCopy full SHA for 6b382dd
.github/workflows/release-and-publish.yml
@@ -191,10 +191,13 @@ jobs:
191
path: dist/
192
- name: Set Python path
193
run: |
194
- echo "PYTHON_PATH=$(dirname $(which python3.10))" >> $GITHUB_ENV
+ PYTHON_PATH=$(dirname $(which python3.10))
195
+ echo "PYTHON_PATH=$PYTHON_PATH" >> $GITHUB_ENV
196
echo "$PYTHON_PATH" >> $GITHUB_PATH
- echo "Updated GITHUB_PATH:"
197
- echo "$GITHUB_PATH"
+ echo "Set PYTHON_PATH to: $PYTHON_PATH"
198
+ echo "Current PATH: $PATH"
199
+ echo "Current GITHUB_PATH:"
200
+ cat $GITHUB_PATH
201
- name: Python Semantic Release
202
id: semantic_release
203
uses: python-semantic-release/[email protected]
0 commit comments