From 4363065106d9c29e4b89d2b01c8293329eb7a1d4 Mon Sep 17 00:00:00 2001 From: Tommy Gatti Date: Wed, 29 Nov 2023 10:17:50 +1100 Subject: [PATCH] Replaced all 'spack_config' with spack-config (#12) --- .github/workflows/update-deployment-repos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-deployment-repos.yml b/.github/workflows/update-deployment-repos.yml index 3df8532..fbc100b 100644 --- a/.github/workflows/update-deployment-repos.yml +++ b/.github/workflows/update-deployment-repos.yml @@ -14,11 +14,11 @@ jobs: with: hosts: ${{ secrets.HOST }} private-key: ${{ secrets.SSH_KEY }} - - name: Pull Deployment spack_config - # This command sshs into the given host, and finds all the version directories that spack_config + - name: Pull Deployment spack-config + # This command sshs into the given host, and finds all the version directories that spack-config # is installed in, then updates them run: | ssh ${{ secrets.USER }}@${{ secrets.HOST }} -i ${{ steps.ssh.outputs.private-key-path }} /bin/bash <<'EOT' cd ${{ vars.ROOT_SPACK_LOCATION }} - find . -maxdepth 1 -mindepth 1 -type d -exec git -C '{}/spack_config' pull \; + find . -maxdepth 1 -mindepth 1 -type d -exec git -C '{}/spack-config' pull \; EOT