Skip to content

Commit

Permalink
ci: use runner.os for filtering
Browse files Browse the repository at this point in the history
This way we don't have to keep it in sync with the OS version we're
using.
  • Loading branch information
indygreg committed Nov 22, 2020
1 parent accf803 commit 7c74e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pyoxidizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
IN_CI: '1'
steps:
- name: Install Linux system packages
if: ${{ matrix.os == 'ubuntu-20.04' }}
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get install -y libyaml-dev snapcraft
Expand Down

0 comments on commit 7c74e66

Please sign in to comment.