Skip to content

Commit

Permalink
ci(github): remove ${{ ... }} from conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
dbohdan committed May 28, 2024
1 parent b250d57 commit 29853d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies with APT
if: ${{ matrix.os == 'ubuntu-latest' }}
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install -y expect
- name: Install dependencies with Homebrew
if: ${{ matrix.os == 'macos-latest' }}
if: matrix.os == 'macos-latest'
run: |
brew install expect
Expand Down

0 comments on commit 29853d7

Please sign in to comment.