From 99379aead1a9037abd8baa70226ff3a3bfa0025d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillem=20C=C3=B3rdoba?= Date: Tue, 28 May 2024 00:37:03 +0200 Subject: [PATCH] Fixed extend-space conditional --- .github/workflows/build-scaffold-holochain-runtime.yaml | 2 +- .github/workflows/build-scaffold-tauri-app.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-scaffold-holochain-runtime.yaml b/.github/workflows/build-scaffold-holochain-runtime.yaml index 00ef76e0..f2fddd18 100644 --- a/.github/workflows/build-scaffold-holochain-runtime.yaml +++ b/.github/workflows/build-scaffold-holochain-runtime.yaml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - name: Extend space - if: ${{ github.event.inputs.runs-on == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-latest' }} uses: ./.github/actions/extend-space - name: Install nix diff --git a/.github/workflows/build-scaffold-tauri-app.yaml b/.github/workflows/build-scaffold-tauri-app.yaml index 68370f14..535c3bff 100644 --- a/.github/workflows/build-scaffold-tauri-app.yaml +++ b/.github/workflows/build-scaffold-tauri-app.yaml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - name: Extend space - if: ${{ github.event.inputs.runs-on == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-latest' }} uses: ./.github/actions/extend-space - name: Install nix