Skip to content

Commit

Permalink
CI: Use absolute path inside Docker container for node
Browse files Browse the repository at this point in the history
  • Loading branch information
Simran-B authored Dec 4, 2024
1 parent baac1f5 commit 65970f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
run: |
$DOWNLOAD_TOOL https://nodejs.org/dist/v16.20.2/node-v16.20.2-linux-x64.tar.xz
tar -xf node-v16.20.2-linux-x64.tar.xz
cp -a ./node-v16.20.2-linux-x64/bin/node '${{ runner.workspace }}/node16'
'${{ runner.workspace }}/node16' --version
cp -a ./node-v16.20.2-linux-x64/bin/node /opt/olive/node16
/opt/olive/node16 --version
- name: Checkout Source Code
env:
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
cd upload-artifact-v3
$DOWNLOAD_TOOL https://raw.githubusercontent.com/actions/upload-artifact/refs/tags/v3/dist/index.js
cd ..
'${{ runner.workspace }}/node16' ./upload-artifact-v3/index.js
/opt/olive/node16 ./upload-artifact-v3/index.js
continue-on-error: true
#uses: actions/upload-artifact@v3
#with:
Expand Down

0 comments on commit 65970f5

Please sign in to comment.