Skip to content

Commit

Permalink
Fix deprecated syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus-87 committed Nov 30, 2020
1 parent da9048d commit 473aa3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install specific version 2.3 of OpenJPEG library
run: wget https://github.com/uclouvain/openjpeg/releases/download/v2.3.0/openjpeg-v2.3.0-linux-x86_64.tar.gz -O /tmp/openjpeg.tar.gz && cd /tmp/ && tar -xvf /tmp/openjpeg.tar.gz
- name: Set environment variable for OpenJPEG library
run: echo '::set-env name=LD_LIBRARY_PATH::/tmp/openjpeg-v2.3.0-linux-x86_64/lib'
run: echo "LD_LIBRARY_PATH=/tmp/openjpeg-v2.3.0-linux-x86_64/lib" >> $GITHUB_ENV
- name: Install TurboJPEG library
run: sudo apt install libturbojpeg
- name: Set up JDK
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install specific version 2.3 of OpenJPEG library
run: wget https://github.com/uclouvain/openjpeg/releases/download/v2.3.0/openjpeg-v2.3.0-linux-x86_64.tar.gz -O /tmp/openjpeg.tar.gz && cd /tmp/ && tar -xvf /tmp/openjpeg.tar.gz
- name: Set environment variable for OpenJPEG library
run: echo '::set-env name=LD_LIBRARY_PATH::/tmp/openjpeg-v2.3.0-linux-x86_64/lib'
run: echo "LD_LIBRARY_PATH=/tmp/openjpeg-v2.3.0-linux-x86_64/lib" >> $GITHUB_ENV
- name: Install TurboJPEG library
run: sudo apt install libturbojpeg
- name: Publish to the Maven Central Repository
Expand Down

0 comments on commit 473aa3e

Please sign in to comment.