From 74b133afbb61c8d28798e60deb37d570dd531731 Mon Sep 17 00:00:00 2001 From: Jezza Hehn Date: Mon, 4 May 2026 00:44:17 -0400 Subject: [PATCH] Update SSH command to source NVM before staging Pipeline update for environment variable path weirdness --- .github/workflows/ssh-stage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ssh-stage.yml b/.github/workflows/ssh-stage.yml index 4ed8cb8..7fe1988 100644 --- a/.github/workflows/ssh-stage.yml +++ b/.github/workflows/ssh-stage.yml @@ -20,4 +20,4 @@ jobs: - name: SSH and run staging script run: | ssh -i ~/.ssh/id_ed25519 ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} \ - 'source ~/.bashrc && sh "${{ secrets.SOURCE_PATH }}"/stage.sh "${{ secrets.SOURCE_PATH }}"' + 'source ~/.nvm/nvm.sh && sh "${{ secrets.SOURCE_PATH }}"/stage.sh "${{ secrets.SOURCE_PATH }}"'