From 3b0be1ffe00e341c0bf639839f5bc0dc37338a72 Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Tue, 4 Feb 2025 09:50:39 -0500 Subject: [PATCH] Is it spaces? --- .github/workflows/build_client.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_client.yaml b/.github/workflows/build_client.yaml index 64d608f943ac..05bef9e026ae 100644 --- a/.github/workflows/build_client.yaml +++ b/.github/workflows/build_client.yaml @@ -13,22 +13,22 @@ jobs: steps: - uses: actions/checkout@v4 with: - path: 'galaxy root' - - uses: ./galaxy\ root/.github/setup-node + path: 'galaxy-root' + - uses: ./galaxy-root/.github/setup-node - name: get client commit id: client-commit shell: bash run: echo "commit=$(git rev-parse HEAD 2>/dev/null)" >> $GITHUB_OUTPUT - working-directory: 'galaxy root' + working-directory: 'galaxy-root' - name: cache client build uses: actions/cache@v4 id: cache with: key: galaxy-static-${{ steps.client-commit.outputs.commit }} - path: 'galaxy root/static' + path: 'galaxy-root/static' - name: Build client if: steps.cache.outputs.cache-hit != 'true' env: GALAXY_PLUGIN_BUILD_FAIL_ON_ERROR: 1 run: make client - working-directory: 'galaxy root' + working-directory: 'galaxy-root'