Skip to content

Commit 96d8d11

Browse files
committed
wip: Add to PATH from Bash
1 parent 6e8cf08 commit 96d8d11

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
echo "GITHUB_PATH"
7070
cat $GITHUB_PATH
7171
72-
- name: Run Jython
72+
- name: Run Jython (Bash)
7373
shell: bash
7474
run: |
7575
output="$(jython -c 'import sys, os; print(os.name, sys.version); print "\n\nJython Works!\n\n"')";
@@ -79,7 +79,7 @@ jobs:
7979
which java
8080
which jython
8181
82-
- name: Run Jython
82+
- name: Run Jython (Powershell)
8383
shell: pwsh
8484
if: ${{ runner.os == 'Windows' }}
8585
run: |

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ runs:
155155
echo "$jython_cmd" >> ~/.local/bin/jython;
156156
157157
chmod +x ~/.local/bin/jython;
158-
# echo ~/.local/bin >> $GITHUB_PATH
158+
echo ~/.local/bin >> $GITHUB_PATH
159159
# echo ${{ github.workspace }}/.local/bin >> $GITHUB_PATH
160160
161161
- name: Add to PATH

0 commit comments

Comments
 (0)