Skip to content

Commit

Permalink
ci(os): try to install curl first
Browse files Browse the repository at this point in the history
  • Loading branch information
spywhere committed Apr 11, 2024
1 parent f36ac78 commit 9fd9f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/os-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
env:
IMAGE: ${{ matrix.os }}
run: |
docker run -v $(pwd):/root/dots $IMAGE sh /root/dots/install.sh -i
docker run -v $(pwd):/root/dots $IMAGE sh -c "apt update && apt install -y curl && /root/dots/install.sh -i"
- name: Perform Installation
env:
IMAGE: ${{ matrix.os }}
FLAG: ${{ matrix.flag }}
run: |
docker run -v $(pwd):/root/dots $IMAGE sh /root/dots/install.sh -y $FLAG
docker run -v $(pwd):/root/dots $IMAGE sh -c "apt update && apt install -y curl && /root/dots/install.sh -y $FLAG"

0 comments on commit 9fd9f66

Please sign in to comment.