From c4d335d0e60943fe9f185c100caae245af5bae70 Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Tue, 29 Aug 2023 17:13:19 +0200 Subject: [PATCH] Fix runner labels --- .github/workflows/publish.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c258305..8cc0357 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,8 +8,11 @@ on: branches: [ "master" ] jobs: - build: - runs-on: [ ubuntu-latest, windows-latest ] + publish: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Use Node.js 18.x