We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
$PATH
1 parent ce291dc commit 57e7d53Copy full SHA for 57e7d53
.github/workflows/self-smoke-test-action.yml
@@ -84,6 +84,8 @@ jobs:
84
}}/public/
85
- name: ✅ Smoke-test the locally checked out action
86
uses: ./test
87
+ env:
88
+ PATH: utter-nonsense
89
with:
90
user: ${{ env.devpi-username }}
91
password: ${{ env.devpi-password }}
twine-upload.sh
@@ -5,6 +5,7 @@ set -Eeuo pipefail
5
# NOTE: These variables are needed to combat GitHub passing broken env vars
6
# NOTE: from the runner VM host runtime.
7
# Ref: https://github.com/pypa/gh-action-pypi-publish/issues/112
8
+. /etc/profile # Makes python and other executables findable
9
export PATH="$(python -m site --user-base)/bin:${PATH}"
10
export PYTHONPATH="$(python -m site --user-site):${PYTHONPATH}"
11
0 commit comments