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 87c9cca commit d794886Copy full SHA for d794886
.github/actions/switch-context/action.yml
@@ -24,6 +24,7 @@ runs:
24
scripts/dev/switch_context.sh ${{inputs.context-name}}
25
echo "Finished initializing to the ${{inputs.context-name}}"
26
source .generated/context.export.env
27
- echo "python-version=$(echo $PYTHON_VERSION)" >> $GITHUB_OUTPUT
28
- echo "initial-commit-sha=$(echo $INITIAL_COMMIT_SHA)" >> $GITHUB_OUTPUT
29
- echo "initial-version=$(echo $INITIAL_VERSION)" >> $GITHUB_OUTPUT
+ printenv
+ echo "python-version=$(echo ${PYTHON_VERSION})" | tee $GITHUB_OUTPUT
+ echo "initial-commit-sha=$(echo ${INITIAL_COMMIT_SHA})" | tee $GITHUB_OUTPUT
30
+ echo "initial-version=$(echo ${INITIAL_VERSION})" | tee $GITHUB_OUTPUT
0 commit comments