Skip to content

Commit a66adba

Browse files
committed
fix CI issue
1 parent 8b8328d commit a66adba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ jobs:
2828
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
2929
- name: Install oasdiff
3030
run: |
31-
# Download the latest oasdiff binary for Linux
32-
curl -fsSL -o oasdiff "https://github.com/oasdiff/oasdiff/releases/latest/download/oasdiff_linux_amd64"
31+
# Download and extract the latest oasdiff binary for Linux
32+
curl -fsSL -o oasdiff.tar.gz "https://github.com/oasdiff/oasdiff/releases/latest/download/oasdiff_linux_amd64.tar.gz"
33+
tar -xzf oasdiff.tar.gz
3334
chmod +x oasdiff
3435
sudo mv oasdiff /usr/local/bin/
3536
# Verify installation

0 commit comments

Comments
 (0)