From 441c09ab35195b35a46655b54c78c8b7b78afcda Mon Sep 17 00:00:00 2001 From: Rye Date: Tue, 19 Nov 2024 03:35:01 -0500 Subject: [PATCH] Switch default build-variables ref to universal for macos arm64 support and fix repo checkout bool check --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index d65a225..138afa7 100644 --- a/action.yaml +++ b/action.yaml @@ -38,7 +38,7 @@ inputs: build-variables-ref: type: string description: build-variables repository ref - default: viewer + default: universal build-id: type: string description: "Built id (default: commit sha)" @@ -96,7 +96,7 @@ runs: - name: Checkout uses: actions/checkout@v4 - if: inputs.checkout + if: ${{ fromJSON(inputs.checkout) }} with: # Work around the fact that in the context of a pull request github.sha # references a dynamic merge commit rather than the branch head