Skip to content

Commit

Permalink
add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-artemkin committed Jan 23, 2024
1 parent 00b4279 commit e113604
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-v8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,11 @@ jobs:
--target-directory "$GITHUB_WORKSPACE/v8js/topvisor/v8js"
- name: define v8 version
id: defining-v8-version
id: definingV8Version
run: |
v8Version="$(d8 <<< "console.log('hi');" | head -n 1 | awk '{ print $3 }' | awk -F'.' '{ print $1,$2 }' | tr ' ' '.')"
echo "v8Version=$v8Version" >> $GITHUB_OUTPUT
v8Version="$($GITHUB_WORKSPACE/v8js/topvisor/v8js/d8 <<< "console.log('hi');" | head -n 1 | awk '{ print $3 }' | awk -F'.' '{ print $1,$2 }' | tr ' ' '.')"
echo "v8Version=$v8Version\n" >> $GITHUB_OUTPUT
echo "v8Version=$v8Version\n"
- name: build debian package
run: |
Expand Down

0 comments on commit e113604

Please sign in to comment.