ci: fix erroneous usage of runs-on in the cachix workflow

You need to use a matrix if you want the job to be run by multiple runners
This commit is contained in:
musjj 2024-02-28 01:07:16 +07:00 committed by GitHub
parent e31d93b7f0
commit 9eca8eccba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,10 @@ on:
jobs:
publish:
name: Publish Flake
runs-on: [ubuntu-latest, macos-latest]
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4