mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
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:
parent
e31d93b7f0
commit
9eca8eccba
1 changed files with 4 additions and 1 deletions
5
.github/workflows/cachix.yml
vendored
5
.github/workflows/cachix.yml
vendored
|
|
@ -8,7 +8,10 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
name: Publish Flake
|
name: Publish Flake
|
||||||
runs-on: [ubuntu-latest, macos-latest]
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue