We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b8328d commit a66adbaCopy full SHA for a66adba
.github/workflows/test.yml
@@ -28,8 +28,9 @@ jobs:
28
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
29
- name: Install oasdiff
30
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"
+ # Download and extract the latest oasdiff binary for Linux
+ 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
34
chmod +x oasdiff
35
sudo mv oasdiff /usr/local/bin/
36
# Verify installation
0 commit comments