Skip to content

Commit

Permalink
Correct env variable syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-r-thorpe committed Nov 29, 2024
1 parent f43f10f commit 6cda6c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -668,8 +668,8 @@ jobs:
curl -sS https://bootstrap.pypa.io/pip/3.6/get-pip.py | python
curl -sS https://nodejs.org/dist/v12.16.2/node-v12.16.2-linux-x64.tar.xz | tar -xJ
echo "`pwd`/node-v12.16.2-linux-x64/bin" >> $GITHUB_PATH
echo "{{ matrix.os }}"
if [[ "{{ matrix.os }}" == "ubuntu-14.04" ]]; then
echo "${{ matrix.os }}"
if [[ "${{ matrix.os }}" == "ubuntu-14.04" ]]; then
echo "Rename node20"
cd $RUNNER_HOME/actions-runner/externals
mv node20 node20.bak
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/src/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ jobs:
curl -sS https://bootstrap.pypa.io/pip/3.6/get-pip.py | python
curl -sS https://nodejs.org/dist/v12.16.2/node-v12.16.2-linux-x64.tar.xz | tar -xJ
echo "`pwd`/node-v12.16.2-linux-x64/bin" >> $GITHUB_PATH
echo "{{ matrix.os }}"
if [[ "{{ matrix.os }}" == "ubuntu-14.04" ]]; then
echo "${{ matrix.os }}"
if [[ "${{ matrix.os }}" == "ubuntu-14.04" ]]; then
echo "Rename node20"
cd $RUNNER_HOME/actions-runner/externals
mv node20 node20.bak
Expand Down

0 comments on commit 6cda6c7

Please sign in to comment.