Skip to content

Commit

Permalink
Merge pull request #3801 from nulib/auto-detect-exiftool-version
Browse files Browse the repository at this point in the history
Auto-detect correct exiftool version
  • Loading branch information
mbklein authored Jan 30, 2024
2 parents e82ff53 + f866ce7 commit 2c5ef03
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ jobs:
runs-on: ubuntu-latest
needs: dependencies
env:
EXIFTOOL_VERSION: 12.74
MIX_ENV: test
services:
db:
Expand Down Expand Up @@ -185,14 +184,13 @@ jobs:
echo "FFMPEG VERSION: $(ffmpeg -version | sed -n "s/ffmpeg version \([-0-9.]*\).*/\1/p;")"
- name: Install ExifTool
run: |
EXIFTOOL_VERSION=$(curl -s https://exiftool.org/ver.txt)
mkdir -p ${{ runner.temp }}/exiftool && \
cd ${{ runner.temp }}/exiftool && \
curl -L -s https://exiftool.org/Image-ExifTool-${EXIFTOOL_VERSION}.tar.gz | tar xz && \
cd Image-ExifTool-${EXIFTOOL_VERSION} && \
perl Makefile.PL && \
sudo make install
env:
EXIFTOOL_VERSION: ${{ env.EXIFTOOL_VERSION }}
- name: Cache Elixir dependencies
uses: actions/cache@v2
with:
Expand Down

0 comments on commit 2c5ef03

Please sign in to comment.