Skip to content

Commit 1d0d01b

Browse files
committed
fix(ci): set ld_library_path
1 parent 6697477 commit 1d0d01b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

action.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ runs:
1818
- name: Set GitHub Path
1919
run: |
2020
echo "$GITHUB_ACTION_PATH" >> $GITHUB_PATH
21-
echo "$PWD/.arkscript/" >> $GITHUB_PATH
22-
echo "ARKSCRIPT_PATH=$PWD/.arkscript/lib/" >> $GITHUB_ENV
21+
echo "$PWD/.arkscript" >> $GITHUB_PATH
22+
echo "ARKSCRIPT_PATH=$PWD/.arkscript/lib" >> $GITHUB_ENV
23+
echo "LD_LIBRARY_PATH=$PWD/.arkscript" >> $GITHUB_ENV
2324
shell: bash
2425
env:
2526
GITHUB_ACTION_PATH: ${{ github.action_path }}

download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ curl "$ASSET_PATH" -O -J -L
3838
mkdir -p .arkscript
3939
unzip -oq "${ASSET}.zip" -d .arkscript
4040
rm "${ASSET}.zip"
41-
chmod +x ./.arkscript/arkscript*
41+
chmod +x ./.arkscript/arkscript* ./.arkscript/*ArkReactor*
4242

0 commit comments

Comments
 (0)