Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
filfreire committed May 31, 2024
1 parent d2769ce commit c732e26
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/macos-inso-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
- opened
- synchronize


jobs:
build:
if: always()
Expand All @@ -30,19 +29,24 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
continue-on-error: true

- name: Download Inso ZIP file
run: curl -L -o inso.zip https://github.com/Kong/insomnia/releases/download/${{ matrix.url }}
continue-on-error: true

- name: Unzip Inso
run: unzip inso.zip -d inso
continue-on-error: true

- name: List files to verify unzip
run: ls inso
continue-on-error: true

- name: Make Inso executable
run: chmod +x inso/inso
continue-on-error: true

- name: Run Inso
run: ./inso/inso --version
continue-on-error: true

0 comments on commit c732e26

Please sign in to comment.