We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18916b8 commit 8b8328dCopy full SHA for 8b8328d
.github/workflows/test.yml
@@ -28,8 +28,12 @@ jobs:
28
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
29
- name: Install oasdiff
30
run: |
31
- curl -fsSL https://raw.githubusercontent.com/oasdiff/oasdiff/main/install.sh | sh
32
- sudo mv ./bin/oasdiff /usr/local/bin/
+ # Download the latest oasdiff binary for Linux
+ curl -fsSL -o oasdiff "https://github.com/oasdiff/oasdiff/releases/latest/download/oasdiff_linux_amd64"
33
+ chmod +x oasdiff
34
+ sudo mv oasdiff /usr/local/bin/
35
+ # Verify installation
36
+ oasdiff --version
37
- run: npm ci
38
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
39
- run: npm run compile
0 commit comments