Skip to content

Commit

Permalink
Is it spaces?
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Feb 6, 2025
1 parent 1689a1e commit 3b0be1f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 3b0be1f

Please sign in to comment.